-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
57 lines (57 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<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-11</title>
</head>
<body>
<div class="container">
<header>
<p>H</p>
<div class="separator"></div>
<p>A</p>
</header>
<main class="grid">
<div class="text">
<div class="line line-1">
<p>MAKE BETTER</p>
</div>
<div class="line line-2">
<p>DIGITAL</p>
<div class="image">
<img src="./assets/images/Image 1.png" alt="" />
</div>
</div>
<div class="line line-3">
<div class="image">
<img src="./assets/images/Image 2.png" alt="" />
</div>
<p>PRODUCTS</p>
</div>
<div class="line line-4">
<p>WITH OUR</p>
<div class="image">
<img src="./assets/images/Image 3.png" alt="" />
</div>
</div>
</div>
<div class="sub-text">
<p>
<span>Typography</span> is the art and technique of arranging type
to make written language legible, readable and appealing when
displayed. The arrangement of type involves selecting typefaces,
point sizes, line lengths, line-spacing, and letter-spacing, as well
as adjusting the space between pairs of letters.
</p>
</div>
</main>
<footer>
<p>C</p>
<div class="separator"></div>
<p>W</p>
</footer>
</div>
</body>
</html>