-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Portfolio</title>
<meta name="description" content="This is my portfolio website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<div class="navbar">
<ul class="nav-links">
<li><a class="nav-link link1 is-active" href="index.html">Home</a></li>
<li><a class="nav-link link2" href="about.html">About</a></li>
<li><a class="nav-link link3" href="contact.html">Contact</a></li>
</ul>
</div>
<div class="text">
<h1 class="heading">Hello, my name is Felix</h1>
<a href="about.html" class="about-button">Learn more about me</a>
</div>
</body>
</html>