-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (74 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="My gallery">
<meta name="author" content="meiroudii">
<meta property="og:title" content="Meiroudii">
<meta property="og:description" content="Official Meiroudii website">
<meta property="og:image" content="./src/assets/image/header.jpg">
<meta property="og:url" content="https://meiroudii.github.io">
<title>Meiroudii Official Website</title>
<link rel="icon" type="svg/x-icon" href="./src/assets/image/favicon.svg">
<link rel="stylesheet" href="./src/css/styles.css" />
</head>
<body>
<header id="hero">
<nav>
<h1>Meiroudii</h1>
<ul>
<li><a href="#">
Information
</a></li>
<li><a href="#about">
About
</a></li>
<li><a href="#contact">
Contact
</a></li>
</ul>
</nav>
</header>
<main>
<aside>
<nav>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</nav>
</aside>
<section>
<img src="./src/assets/image/header.jpg" width="500px">
</section>
<section id="about">
<h3>About Meiroudii</h3>
<p>I draw cute things! </p>
</section>
<section id="contact">
<h3>SNS</h3>
<a href="https://www.twitter.com">Twitter</a>
<a href="https://www.pixiv.net">Pixiv</a>
</section>
</main>
<footer>
<hr>
<a href="https://www.twitter.com">
<img src="./src/assets/image/twittericon.svg" width="20px"/>
</a>
<a href="https://instagram.com">
<img src="./src/assets/image/instaicon.svg" width="20px"/>
</a>
<a href="https://pixiv.net">
<img src="./src/assets/image/pixivicon.svg" width="20px"/>
</a>
<a href="#hero">GOTO TOP</a>
<p>Meiroudii | 2024 © All rights reserved.</p>
</footer>
<script src="./src/script/index.js"></script>
</body>
</html>