-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>CSS Buttons</title>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
</head>
<body>
<header>
<nav class="button-container">
<div class="buttons">
<ul>
<li><a href="#">Here</a></li>
<li><a href="#">There</a></li>
<li><a href="#">Where</a></li>
<li><a href="#">Here</a></li>
<li><a href="#">Nice!</a></li>
</ul>
</div>
</nav>
</header>
<p> A simple CSS button example, with transitions and transformations. </p>
</body>
</html>