forked from technative-academy/tfs-project-ai-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.27 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.27 KB
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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | Ask the Brains</title>
<link rel="stylesheet" href="./css/style.css" />
<script type="module" defer src="./js/script.js"></script>
</head>
<body>
<header class="header">
<div class="header__content">
<div class="header__logo">
<img src="../images/logo.svg" alt="Emperor’s Insight" />
</div>
<nav class="header__nav">
<a href="./" class="header__link header__link--active">Home</a>
<a href="./about/" class="header__link">About</a>
<a href="./ask/" class="header__link">Ask</a>
<a href="./shop/" class="header__link">Shop</a>
</nav>
</div>
<div class="header__titles">
<h1 class="header__title">Ask the brains</h1>
<p class="header__subtitle">...</p>
</div>
</header>
<main class="main">
<p>...</p>
</main>
<footer class="footer">
<p class="footer__links">
<a href="#" class="footer__link">Terms and Conditions</a> |
<a href="#" class="footer__link">Cookies</a>
</p>
<p class="footer__copyright">© 202x</p>
</footer>
</body>
</html>