-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (108 loc) · 2.23 KB
/
index.html
File metadata and controls
112 lines (108 loc) · 2.23 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<title>Web 1</title>
</head>
<body>
<h1>
Yukiko's Web 1 Assignments
</h1>
<a href="assignment-1/">
A1: Simple Mockups
</a>
<br>
<a href="assignment-2/">
A2: Simple HTML
</a>
<br>
<a href="assignment-3/">
A3: Style About Me
</a>
<br>
<a href="assignment-4/">
A4: Update Mockups and style
</a>
<br>
<a href="assignment-5/">
A5: Navigation and Cards
</a>
<br>
<a href="assignment-6/">
A6: Hero, embeddables and transitions
</a>
<br>
<a href="assignment-7/">
A7: Tutorial Pitch
</a>
<br>
<a href="assignment-8/">
A8: B/W Mockups
</a>
<br>
<a href="assignment-9/">
A9: Color Mocks in 3 ways
</a>
<br>
<a href="assignment-10/">
A10: Apply style throughout site
</a>
<br>
<a href="assignment-11/">
A11: Prototype and CSS Layout
</a>
<br>
<a href="assignment-12/">
A12: Styled Home, to do list
</a>
<br>
<a href="assignment-13/">
A13: Refine Content and style
</a>
<br>
<a href="assignment-14/">
A14: Case Study
</a>
</body>
<style type="text/css">
body {
background-color: #efefef;
margin: 0;
text-align: center;
font-family: arial, sans-serif;
}
h1 {
margin: 100px auto 40px auto;
padding-bottom: 20px;
max-width: 600px;
display: block;
border-bottom: 2px dotted #bbb;
color: #333;
}
a {
color: #3399cc;
font-size: 20px;
margin: 0.5em;
display: inline-block;
text-decoration: none;
transition: all 0.1s ease;
}
a:hover {
color: #4568ea;
text-decoration: underline;
}
@keyframes dance {
0% { transform: rotate(0deg); }
50% { transform: rotate(0deg); }
52% { transform: rotate(3deg); }
54% { transform: rotate(-3deg); }
56% { transform: rotate(3deg); }
58% { transform: rotate(-3deg); }
60% { transform: rotate(3deg); }
62% { transform: rotate(0deg); }
100%{ transform: rotate(0deg); }
}
h1 {
animation: dance 5s 0s infinite ease;
}
</style>
</html>