-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign.html
More file actions
28 lines (28 loc) · 1.25 KB
/
design.html
File metadata and controls
28 lines (28 loc) · 1.25 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Макет сайта</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./globals.css">
<link rel="stylesheet" href="design.css">
</head>
<body>
<script src="./components/header.js"></script>
<main>
<section id="screenshots" style="display: flex;flex-direction: column; align-items: center;">
<a target="_blank" style="text-decoration: underline;margin-top: 20px;" href="https://www.figma.com/design/Elq8CX8N5yQwGnSPFMD42O/Untitled?node-id=0-1&t=B0sfidOc5VKs543Q-1">Проект в Figma</a>
<img src="./img/Frame 1.jpg" alt="">
<p>Макет главной страницы</p>
<img src="./img/Frame 2.jpg" alt="">
<p>Макет блога</p>
<img src="./img/Frame 3.jpg" alt="">
<p>Макет кейсов</p>
</section>
</main>
<script src="./components/footer.js"></script>
</body>
</html>