-
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.47 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.47 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon">
<link rel="icon" href="./assets/favicon.ico" type="image/x-icon">
<title>random-jokes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header class="header">
<h1 class="title">random-jokes</h1>
</header>
<main class="main">
<div class="quote">
<div class="quote__wrap">
<p class="quote__text"></p>
<p class="quote__author"></p>
</div>
</div>
<div class="tools">
<button class="button">Change quote</button>
<div class="langs">
<span class="lang lang_active" data-lang="en">EN</span> / <span class="lang" data-lang="ru">RU</span>
</div>
</div>
</main>
<footer class="footer">
<div class="footer__github"><a href="https://github.com/WiiJoy" class="link">WiiJoy</a> © 2022</div>
<div class="footer__rss"><a href="https://rs.school/js-stage0/" class="link">Rolling Scopes School</a></div>
</footer>
<div class="blur"></div>
</div>
<script src="script.js"></script>
</body>
</html>