-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
44 lines (44 loc) · 1.18 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
<!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-07</title>
</head>
<body>
<header class="flex">
<div class="logo">
<h1>DESIGN STUDIO</h1>
<p>C.THORNTON</p>
</div>
<nav class="flex">
<div class="navigation">
<a href="/">BIOGRAPHY</a>
<a href="/">WORKS</a>
<a href="/">CONTACT</a>
</div>
<div class="email">
<p>hey [at] chloethornton [dot] com</p>
</div>
</nav>
</header>
<main class="grid">
<div class="name">
<p>Chloe</p>
<p>Thornton</p>
</div>
<div class="intro__text">
<p>
Hey, I’m a Chloe Thornton, freelance designer based in london. I’ve
been perfoming digital and print design, brand identity and
interactive experiences.
</p>
</div>
<div class="arrow">
<img src="./assets/images/arrow.png" alt="arrow" />
</div>
</main>
</body>
</html>