-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="kai">
<meta name="description" content="my personal website">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main_container">
<div class="left_container">
<section class="logo">
<a href="index.html">haifromkai</a>
</section>
<section class="content">
<img src="/images/boba.jpg" alt="Image of Kai">
</section>
<section class="quote">
<h1>practicing the<br>craft of code</h1>
</section>
</div>
<div class="right_container">
<nav>
<div class="nav-items">
<a href="#" class="active">home</a>
<a href="about.html">about</a>
<a href="#">projects</a>
<a href="https://github.com/haifromkai" target="_blank">github</a>
<a href="#">contact</a>
</div>
</nav>
</div>
</div>
</body>
</html>