forked from aerian-studios/modern-js-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1003 Bytes
/
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
<!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>I 😻 JS</title>
<style type="text/css">
html,
body {
font-family: Helvetica, Verdana, sans-serif;
font-size: large;
text-align: center;
}
h1 {
font-size: 100%;
}
kbd {
border-radius: 4px;
color: #eee;
background-color: #333;
font-family: "Monaco", monospace;
font-size: medium;
padding: 4px;
}
</style>
<script src="./index.js" defer></script>
</head>
<body>
<h1>Week 3</h1>
<p>Press <kbd>⌘⌥I</kbd> or <kbd>F12</kbd> to open Developer Tools.</p>
</body>
</html>