-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.25 KB
/
index.html
File metadata and controls
42 lines (42 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Layout-20</title>
</head>
<body>
<main>
<div class="left">
<div class="circle">
<img src="./assets/images/Circle.png" alt="circle text" />
</div>
<div class="text">
<h1>Mille <span>Sebastien</span></h1>
<p>
One of the original illustrators, Mille Sebastien is a Danish
<span>
stylist, creative director, entrepreneur and mother of two.
</span>
</p>
</div>
<div class="button">
<a href="/">View collection</a>
<img src="./assets/images/arrow.svg" alt="arrow" />
</div>
</div>
<div class="right">
<div class="menu">
<a href="/">Menu</a>
<img src="./assets/images/menu.svg" alt="menu" />
</div>
<div class="image">
<img src="./assets/images/Image.png" alt="a women illustration" />
</div>
<p>02 <span>/07</span></p>
</div>
</main>
</body>
</html>