-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (39 loc) · 1.03 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
<!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-02</title>
</head>
<body>
<header>
<nav>
<a href="/">HOME</a>
<a href="/">WORK</a>
</nav>
</header>
<main class="grid">
<p class="title1">Indigo</p>
<div class="image">
<img src="./assets/images/Image.svg" alt="" class="base__img" />
<img src="./assets/images/Circle Text.svg" alt="" class="child__img" />
</div>
<p class="title2">Bizzare</p>
<div class="info">
<h3>HELLO THERE</h3>
<p>
Indigo Bizzare is photography studio based in Copenhagen, Denmark.
Working for most famous brads.
</p>
</div>
</main>
<footer>
<nav>
<a href="/">ABOUT</a>
<a href="/">CONTACT</a>
</nav>
</footer>
</body>
</html>