-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.33 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Exercise 2</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat|Open+Sans">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<header class="page-header">
</header>
<div class="container">
<div class="box">
<img src="images/blog-image.jpg" class="image">
<!-- Content goes here -->
<div class="text">
<h1>My Personal Blog</h1>
<p>Name: </p>
<p>Job Role: </p>
<p>Dream Holiday Destination: </p>
<p>Favourite Hobby: </p>
<p>Favourite Food: </p>
<p>Favourite Drink: </p>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>