-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (51 loc) · 1.65 KB
/
index.html
File metadata and controls
64 lines (51 loc) · 1.65 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
58
59
60
61
62
63
64
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width" />
<title>Project gallery</title>
<link href="styles/styles.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="flex-container">
<div class="box one">
<section> <H2>Introduction</H2>
<p id="description1"></p>
<button id="button1">Show details</button>
</section>
</div>
<div class="box two">
<section> <h2>Hobby Page</h2>
<img src="images/Nail-art.png" alt="a screen shot of a well laid out website with information about nail art as a hobby" />
<p id="description2"></p>
<button id="button2">Show details</button>
</section>
</div>
<div class="box three">
<Section><h2>Movie Data</h2>
<img src="images/film.png" alt="A screen shot of a well laid out database of movies"/>
<p id="description3"></p>
<button id="button3">Show details</button>
</Section>
</div>
<div class="box four">
<section>
<h2>Website</h2>
<img src="images/website.png" alt="a screen shot of a well laid out application website" />
<p id="description4"></p>
<button id="button4">Show details</button>
</section>
</div>
<div class="box five">
<section> <h2>Game</h2>
<img src="images/games.png" alt="a screenshot of a well designed website hosting a video game" />
<p id="description5"></p>
<button id="button5">Show details</button>
</section>
</div>
</div>
</div>
<script src="scripts/main.js"></script>
</body>
</html>