forked from galvanizejs/week4-project1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-index.html
44 lines (44 loc) · 1.16 KB
/
sample-index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="155 characters of call to action">
<title>PAGE TITLE HERE</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<body style="margin-left:25%">
<img alt='jessiezack' src='http://justjokin.files.wordpress.com/2014/02/jessie-i-learned-jquery-omg-what-happened-in-the-document-ready-software-jokes-5-justjok-in.jpg'>
<h2>I'm so excited...</h2>
<p>This is a paragraph.</p>
<a href="http://codepen.io/Hornebom/pen/ranmi">codepen.io</a> is an awesome place to check out what people have made with jQuery.
<br><br><br>
<table border="1">
<tr>
<th>Classmate</th>
<th>Favorite Animal</th>
</tr>
<tr>
<td>Austin</td>
<td>Mallard</td>
</tr>
<tr>
<td>Pascalle</td>
<td>Okapi</td>
</tr>
<tr>
<td>Colin</td>
<td>Capybara</td>
</tr>
<tr>
<td>Andrew</td>
<td>Meerkat</td>
</tr>
<tr>
<td>Jessica</td>
<td>Purple Heron</td>
</tr>
</table>
</body>
<script type='text/javascript' src='main.js'></script>
</html>