forked from js-tasks-ru/htmlcss-20230411_dorovenco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<!-- Главная страница -->
<html lang="ru">
<head>
<link rel="stylesheet" href="./assets/css/normalize.css">
<link rel="stylesheet" href="./assets/css/main.css">
</head>
<body>
<div class="page">
<header class="header">
<h1 class="header__title">Reusable component library</h1>
</header>
<main class="content">
<div class="card">
<div class="card__footer">
Tooltip
</div>
</div>
<div class="card">
<div class="card__footer">
Custom form elements
</div>
</div>
<div class="card">
<div class="card__footer">
Calendar
</div>
</div>
<div class="card">
<div class="card__footer">
Modal dialog
</div>
</div>
<div class="card">
<div class="card__footer">
Histogram
</div>
</div>
<div class="card">
<div class="card__footer">
Avatar
</div>
</div>
</main>
<footer class="footer">
<h2 class="footer__title">About</h2>
<p class="footer__description">This project is a collection of professionally designed, pre-built, fully responsive HTML snippets you can drop into your projects. Get started by checking out our free preview components, or browsing the PNG previews in the categories you're most curious about.</p>
</footer>
</div>
</body>
</html>