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>
<html>
<head>
<link rel="stylesheet" type="text/css" href="reset.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 type="text/javascript" src="main.js"></script>
</head>
<body>
<nav id="top">
<h1>JQuery Basics</h1>
</nav>
<div class = "row">
<div class = "col">
<div class = "box" id = "box-1"></div>
<p>The box color is <span id = "color-1"></span></p>
</div>
<div class = "col">
<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>
<head>
<link rel="stylesheet" type="text/css" href="reset.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 type="text/javascript" src="main.js"></script>
</head>
<body>
<nav id="top">
<h1>JQuery Basics</h1>
</nav>
<div class="row">
<div class="col">
<div class="box" id="box-1"></div>
<p>
The box color is <span id="color-1"></span>
</p>
</div>
<div class="col">
<div class="box" id="box-2"></div>
<p>
The box color is <span id="color-2"></span>
</p>
</div>
</body>
</html>
<div class="col">
<div class="box" id="box-3"></div>
<p>
The box color is <span id="color-3"></span>
</p>
</div>
</div>
</body>
</html>