-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 977 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (26 loc) · 977 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Генератор Пирожков</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="animation.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="root-content">
<div id="about-container" class="about-container">
<div class="my-button button-gray"><div class="my-button-text">О нас</div></div>
<div class="my-button button-red"><div class="my-button-text">Как это работает</div></div>
</div>
<div class="generator-container">
<div onclick="generatePirog()" class="my-button button-peach"><div id="my-button-text" class="my-button-text">Сочинить</div></div>
</div>
</div>
<script src="script.js">
</script>
<script src="word_by_word_algorithm.js">
</script>
</body>
</html>