Update index.html

This commit is contained in:
William Mantly 2015-07-28 18:08:57 -04:00
parent df536eb672
commit da345ba3c1

View File

@ -1,30 +1,34 @@
<!doctype HTML> <!doctype HTML>
<html> <html>
<head> <head>
<link rel="stylesheet" type="text/css" href="reset.css"> <link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="main.css"> <link rel="stylesheet" type="text/css" href="main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script> <script type="text/javascript" src="main.js"></script>
</head> </head>
<body> <body>
<nav id="top"> <nav id="top">
<h1>JQuery Basics</h1> <h1>JQuery Basics</h1>
</nav> </nav>
<div class = "row"> <div class="row">
<div class = "col"> <div class="col">
<div class = "box" id = "box-1"></div> <div class="box" id="box-1"></div>
<p>The box color is <span id = "color-1"></span></p> <p>
</div> The box color is <span id="color-1"></span>
<div class = "col"> </p>
<div class = "box" id = "box-2"></div>
<p>The box color is <span id = "color-2"></span></p>
</div>
<div class = "col">
<div class = "box" id = "box-3"></div>
<p>The box color is <span id = "color-3"></span></p>
</div>
</div> </div>
<div class="col">
<div class="box" id="box-2"></div>
<p>
The box color is <span id="color-2"></span>
</p>
</div> </div>
</body> <div class="col">
</html> <div class="box" id="box-3"></div>
<p>
The box color is <span id="color-3"></span>
</p>
</div>
</div>
</body>
</html>