-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (50 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Demo</title>
<link rel="shortcut icon" href="about:blank" />
<style>
body {
color: #444;
font-family: Helvetica, serif;
}
h1 {
font-size: 70px;
margin-top: 50px;
margin-bottom: 100px;
}
h4 span {
font-size: 30px;
display: block;
}
a,
a:visited,
a:active {
color: #4285fa;
display: block;
font-size: 50px;
margin-bottom: 20px;
text-decoration: none;
}
footer {
position: absolute;
bottom: 0;
}
footer a {
font-size: 40px;
}
</style>
</head>
<body>
<h4>GDG Salt Lake <span>Devfest 2018</span></h4>
<h1>DOM manipulation with web workers</h1>
<a href="./vanilla">🌐 Single thread</a>
<a href="./web-worker/">⚙ With web worker
<footer>
<a href="https://twitter.com/juanlizarazog" target="_blank">By @juanlizarazog</a>
</footer>
</body>
</html>