-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchristmas.html
More file actions
32 lines (25 loc) · 779 Bytes
/
christmas.html
File metadata and controls
32 lines (25 loc) · 779 Bytes
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Merry Christmas</title>
<link rel="stylesheet" href="src/static/css/default.css">
<link rel="stylesheet" href="src/static/css/christmas.css">
</head>
<body>
<div class="navBar">
<div class="icon"><a href="/HUI">HUI</a></div>
<div class="cursor" color="#F63E61"></div>
</div>
<section>
<div class="container">
<div class="circle">
<div class="inCircle"></div>
<h2>Happy Christmas</h2>
</div>
</div>
</section>
</body>
<script src="src/static/js/cursor.js"></script>
<script src="src/static/js/christmas.js"></script>
</html>