-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
46 lines (41 loc) · 1.5 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="src/const.js"></script>
<script src="src/checkAuth.js"></script>
<meta charset="UTF-8">
<title>Main</title>
<link rel="stylesheet" href="style/normalize.css">
<link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="style/header.css">
<link rel="stylesheet" href="style/content.css">
<link rel="stylesheet" href="style/block_transparency.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header-list">
<a class="header-list__link-main" href="./main.html">
<h2 class="header-list__site-name">WORDLIN</h2>
</a>
<a class="header__all-list" href="./public_word_lists.html">public lists</a>
<a class="header__all-list" href="./user_word_lists.html">my lists</a>
</div>
<div class="header-profile">
<span id="header-profile__username" class="header-profile__username"></span>
</div>
</header>
<div class="content transparency">
<a class="content-link" href="./learn_word.html">
<button class="content-button transparency">
<h4 class="content-button__text">
Learn word
</h4>
</button>
</a>
</div>
<script src="src/setHeader.js"></script>
</body>
</html>