-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 1.06 KB
/
index.html
File metadata and controls
49 lines (39 loc) · 1.06 KB
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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML5 CSS 3 Samples</title>
<link href="css/styles.css" rel="stylesheet">
</head>
<body id="home">
<section>
<h1>Organizing Styles</h1>
<div class="box-center box-small box-shadow box-round">
Hi!
</div>
</section>
<section>
<h1>Colors</h1>
<div class="box-center box-small box-shadow box-round box-red box-inline">
Hi!
</div>
<div class="box-center box-small box-shadow box-round box-blue box-inline">
Hi!
</div>
</section>
<section>
<h1>Gradients</h1>
<div class="box-center box-small box-shadow box-round box-gray box-inline">
Check out the gradient in the background
</div>
</section>
<section>
<h1>Transitions</h1>
<button id="press-me" class="btn btn-yellow btn-transition">Press Me!</button>
</section>
<script src="js/jquery.js"></script>
<script src="js/site.js"></script>
</body>
</html>