forked from js-tasks-ru/htmlcss-20211021_vortexnz21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 2.09 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
<!DOCTYPE html>
<!-- Main page -->
<html lang="ru">
<head>
<link rel="stylesheet" href="./assets/css/normalize.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/utils.css">
<link rel="stylesheet" href="./components/header/header.css">
<link rel="stylesheet" href='./components/preview/preview.css'>
<link rel="stylesheet" href="./components/footer/footer.css">
<link rel="stylesheet" href="./components/card/card.css">
<title>Index</title>
</head>
<body>
<div class='page'>
<header class='header'>
<div class='container'>
<h1 class='header__title'>Reusable component library</h1>
</div>
</header>
<main class='main'>
<div class='preview'>
<div class='container'>
<div class='preview__cards'>
<div class='card preview__card'></div>
<div class='card preview__card'></div>
<div class='card preview__card'></div>
<div class='card preview__card'></div>
<div class='card preview__card'></div>
<div class='card preview__card'></div>
</div>
</div>
</div>
</main>
<footer class='footer'>
<div class='container'>
<h2 class='footer__title'>About</h2>
<p class='footer__text footer__text-container'>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>
</div>
</footer>
</div>
</body>
</html>