-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (74 loc) · 2.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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="styles.css">
<title>En Digital Apa</title>
</head>
<body>
<header>
<div class="first-section">
<div class="navbar-left">
<p id="header-logo">Header logo</p>
</div>
</div>
<div class="navbar-right">
<ul>
<li class="header-link">Home</li>
<li class="header-link">About</li>
<li class="header-link">Contact</li>
</ul>
</div>
</header>
<main>
<div class="section-1">
<div class="section-image">
<picture>
<img src="/Pictures/hero-picture.jpg" alt="hero">
</picture></div>
<div class="section-text"><h2>This site is awesome</h2>
<p>
Here is a paragraph of text to support the
<a href="#">Welcome</a> area stuff.
</p>
<a href="#">button text</a>
</div>
</div>
<div class="section-2">
<div class="image-item">
<h2>Some Random Information.</h2>
<img src="/Pictures/book.jpg" alt="book">
</div>
<div class="image-item">
<h2>Some Random Information.</h2>
<img src="/Pictures/code.jpg" alt="book">
</div>
<div class="image-item">
<h2>Some Random Information.</h2>
<img src="/Pictures/marketing.jpg" alt="book">
</div>
<div class="image-item">
<h2>Some Random Information.</h2>
<img src="/Pictures/mobile-app.jpg" alt="book">
</div>
</div>
<div class="section-3">
<div class="inner-3">
<h2>Quote</h2>
</div>
</div>
<div class="section-4">
<div class="inner-4">
<h2>Call to action</h2>
</div>
</div>
</main>
<footer>
<div class="inner-footer">
<h2>Footer</h2>
</div>
</footer>
</body>
</html>