-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.58 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
<!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">
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<div class="navigation-bar">
<img class="icon" src="./images/pfp.png">
<div class="top">Home</div>
<a href="./about.html" class="top bordered">About</a>
<a href="./projects.html" class="top bordered">Projects</a>
<a href="./games.html" class="top bordered">Games</a>
</div>
<h1>Hello and welcome to my website!</h1>
<h3>On this website, you will find all the different projects i have been and am working on!
<br>Click on the different tabs in the navigation bar to find out more!</h3>
<img class="main-img" src="./images/pfp.png">
<p>Fun fact: My profile picture isn't actually my <a href="./secret/mira.html" style="text-decoration: none;">real cat</a>, i just found it somewhere and decided to use it</p>
<script>
console.log("Hello there!");
console.log("Go to https://mirathecat.github.io/secret/scripting.html for an easter egg!")
</script>
</body>
</html>