-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.55 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
<!doctype html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<title>Han's site</title>
<script src="js/script.js" defer></script>
<script src="js/all.js" defer></script>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/all.css">
<link rel="icon" href="assets/fav/favicon.png" />
</head>
<body>
<header>
<div class="ttle">
<div class="picname">
<img class="pic" src="assets/pic.jpg" />
<h1 class="name">Site</h1>
</div>
<button class="menu"><i class="fa-solid fa-bars fa-xl"></i></button>
</div>
<nav>
<ul>
<li><a href="https://www.google.com">Google</a></li>
<li><a href="https://www.baidu.com">Baidu</a></li>
<li><a href="/pages/pages.html">Pages</a></li>
</ul>
</nav>
<hr />
</header>
<main>
<h2>Hello my friend!</h2>
<h3>
I am still learning HTML, hope there is one day I can finish this page!
</h3>
<p class="lxgw">
I am trying to use external script and css so my html code is much
cleaner than before!
</p>
<a href="mailto:[email protected]" title="mail to me">
<button id="btn1">Mail to me!</button>
</a>
</main>
<footer>
<hr />
<h4>Time(UTC+08:00):</h4>
<span id="datetime">Time Loading...</span>
<div class="footercontact">
<p>
contact me:
<a href="mailto: [email protected]">[email protected]</a>
</p>
<h5>©2024-2025 Han. All rights reserved.</h5>
</div>
</footer>
</body>