-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.01 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.01 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>
<title>Солнечные батареи GreenCorp</title>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img class="header__logo" src="img/logo.svg">
<div class="header__controls">
<a href="#contacts">Контакты</a>
<button>Заказать</button>
</div>
</header>
</body>
<section class="about">
<div class="about__info">
<h1>Солнечные панели GreenRobotic</h1>
<p>Производите дешёвую экологически чистую электроэнергию из солнечного света</p>
<button>Узнать подробнее</button>
</div>
<div class="about__images">
<img class="about__sun-image" src="img/sun.png">
<img class="about__image" src="img/solar-panel.png">
</div>
</section>
</html>