-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
89 lines (81 loc) · 2.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Examples Overview</title>
<!-- A little example of not using a separate css file -->
<style>
html,
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 20px;
}
.content {
max-width: 800px;
margin: 0 auto;
background-color: #fff;
}
a {
color: #1758ff;
text-decoration: none;
transition: transform 0.3s;
}
a:hover {
color: #0938b3;
transform: translateY(-5%);
display: inline-block;
}
</style>
</head>
<body>
<div class="content">
<h1>Web Dev ZHdK 2019</h1>
<h2>Examples</h2>
<h3>Using <a href="https://pages.github.com/">github pages</a> we can host pages directly</h3>
<ol>
<li>
<a href="./examples/basic-page/index.html" target="_blank">Basic Page structure</a>
</li>
<li>
<a href="./examples/images/index.html" target="_blank">Images</a>
</li>
<li>
<a href="./examples/basic-styling/index.html" target="_blank">Basic Styling</a>
</li>
<li>
<a href="./examples/floats/index.html" target="_blank">Floating Basics</a>
</li>
<li>
<a href="./examples/positioning/index.html" target="_blank">Positioning Basics</a>
</li>
<li>
<a href="./examples/mediaqueries/index.html" target="_blank">Mediaqueries Basics</a>
</li>
<li>
<a href="./examples/css-transitions/index.html" target="_blank">CSS Transitions</a>
</li>
<li>
<a href="./examples/js-basics/index.html" target="_blank">JavaScript Basics</a>
</li>
<li>
<a href="./examples/jquery-basics/index.html" target="_blank">jQuery Examples</a>
</li>
<li>
<a href="./examples/modal/index.html" target="_blank">Toggle a modal/navigation on click</a>
</li>
<li>
<a href="./examples/pizza-order/index.html" target="_blank">Interactive Pizza Ingredient Calculator</a>
</li>
<li>
<a href="./examples/flex-3-columns/index.html" target="_blank">Flexbox transitions with 3 columns</a>
</li>
<li>
<a href="./examples/add-item-to-cart/index.html" target="_blank">Add items to cart (simple version)</a>
</li>
<li>
<a href="./examples/reveal-hidden/index.html" target="_blank">Reveal hidden items in cart</a>
</li>
</ol>
</div>
</body>
</html>