-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (26 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Mira The Cat - Home</title>
<link rel="icon" href="./images/pfp.png">
<meta property="og:site_name" content="Mira The Cat's Website">
<meta property="og:title" content="Home Page">
<meta property="og:description" content="A website for my projects">
<meta property='og:image' content='/images/pfp.png'>
<meta property="og:type" content="website">
<meta name="theme-color" content="#60ff52">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navigation-bar">
<a href="./index.html" class="top">Home</a>
<a href="./about.html" class="top">About</a>
<a href="./projects.html" class="top">Projects</a>
<a href="./test.html" class="top">Test</a>
</div>
<h1>Home Page</h1>
<p>Under development...</p>
<img class="main-img" src="./images/pfp.png">
</body>
</html>