-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.03 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mouse Move Shadow</title>
<script src="script.js" defer></script>
<style>
html {
font-family: sans-serif;
color: black;
}
body {
margin: 0;
background: url('./background.svg');
}
.hero {
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
.hero h1 {
font-size: 100px;
text-shadow: 10px 10px 0 rgba(0, 0, 0, 1);
}
.hero h3 {
color: coral;
font-family: monospace;
}
</style>
</head>
<body>
<div class="hero">
<h1 contenteditable="">💖 WOAH!</h1>
<h3>Pro Tip: This content is editable :)</h3>
</div>
</body>
</html>