-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.88 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Our First Webpage</title>
<link rel="shortcut icon" href="images/favicon.png">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Barlow+Condensed&display=swap" rel="stylesheet">
</head>
<body>
<div class="backdrop">
<div class="modal">
<h1>Get in Touch</h1>
<p>Contact me to find out more about my exciting trips!</p>
<a href="contact/index.html"><button>Contact</button></a>
</div>
</div>
<header class="fixed-bar"> <h1 class="page-title">Mike's World</h1> </header>
<nav>
<ul class="navigation">
<li>Home</li>
<li><a href="contact/index.html">Contact</a></li>
</ul>
</nav>
<main>
<div class="trip-text">
<p>My SF City Trip</p>
<p>The California Landscape</p>
</div>
<div class="trip-images">
<img class="trip-image" src="images/sf.png" alt="Image of the San Francisco streets">
<img class="trip-image" src="images/california.png" alt="Image of the California streets">
</div>
<p class="feedback">Do people like my Page</p>
</main>
<footer>
<div class="review-clients">
<img src="images/image-max.png" alt="Image of Max">
<p>Max - Awesome page, great work, keep it up!</p>
</div>
<div class="review-clients">
<img src="images/image-manu.png" alt="Image of Manu">
<p>Manu - Looks really nice, beautiful pictures!</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>