-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
36 lines (26 loc) · 1.15 KB
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kittens!</title>
<link rel="stylesheet" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Reenie+Beanie' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- original demo via http://html5doctor.com/history-api/ -->
<div class="wrapper">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="fluffy.html">Fluffy</a></li>
<li><a href="socks.html">Socks</a></li>
<li><a href="whiskers.html">Whiskers</a></li>
</ul>
<p class="content">Welcome to Kittens! Home of Fluffy, Socks, and Whiskers. If you're not suffering from a cute overdose within the hour, then you really are a heartless bugger! Now lets look at some cats!</p>
<div class="media">
<img class="photo" src="http://placekitten.com/300/300" alt="A heartbreakingly cute kitten!">
</div>
</div>
<script src="http://code.jquery.com/jquery-2.0.0b2.js"></script>
<script src="script.js"></script>
</body>
</html>