-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<style>
*,
*::after,
*::before {
box-sizing: border-box;
}
:root {
--bg-clr: white;
--txt-clr: black;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-clr: #121212;
--txt-clr: white;
}
}
body {
color: var(--txt-clr);
background-color: var(--bg-clr);
padding: 20px 40px;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
}
</style>
</head>
<body>
<h1>Home</h1>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Aut optio
doloribus eligendi velit deserunt ducimus molestias neque ad, culpa
perspiciatis possimus, est, facilis quo obcaecati ea nulla recusandae
mollitia. Eligendi.
</p>
<ul>
<li><a href="about">About</a></li>
<li><a href="contact-me">Contact me</a></li>
</ul>
</body>
</html>