-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.06 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="./css/reset.css">
<link rel="stylesheet"
href="./css/style.css">
<link rel="preconnect"
href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet"
href="https://www.w3schools.com/w3css/4/w3.css">
<title>Project M4</title>
</head>
<body>
<header>
<h1>КАЛЬКУЛЯТОР ЛИЧНОГО НАКОПИТЕЛЬНОГО ПЛАНА</h1>
</header>
<div class="butt">
<button class="butt__add">
<span class="butt__text">Создать</span>
<div class="butt_create">+</div>
</button>
</div>
</header>
<main>
<section>
<div class="info__div-new">
<div class="new__elm-block">
</div>
</div>
</section>
</main>
<script src="./script/main.js"></script>
</body>
</html>