forked from mngyuan/building-your-own-website-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.25 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
<html>
<body>
<h1>Hello.</h1>
<p>This is probably the 100th personal website I've made.</p>
<p style="font-size: 8px;">My name is <span style="font-size: 96px">Kevin Lee</span> and I teach workshops at the <a
href="https://rca.ac.uk">RCA!</a>
</p>
<p>Let me introduce you to my favorite things.
<ul>
<li>Favorite movie: <a href="https://isup.me">Stranger than Fiction</a></li>
<li>Favorite arts uni in London: <a href="https://rca.ac.uk">Royal College of Art</a></li>
<li>Favorite country to visit last weekend: <a href="https://en.wikipedia.org/wiki/Denmark">Denmark</a></li>
<p>new content</p>
</ul>
</p>
<a href="https://google.com">
</a>
<style>
html {
background-color: #ff4444;
color: #3344ff;
font-family: 'Space Grotesk', sans-serif;
}
body {
width: 768px;
margin: 0 auto;
text-align: center;
}
a {
color: white;
font-size: 28px;
}
a:hover {
color: black;
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap');
</style>
</body>
</html>