-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollection.html
More file actions
91 lines (79 loc) · 3.85 KB
/
Collection.html
File metadata and controls
91 lines (79 loc) · 3.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!--made by lucas lavallee, student ID: 659088900-->
<!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">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="site_style.css">
<style>
.flexcontainer{
display: flex;
/* border: 5px black; */
height: 100%;
width: 100% - 150px;
flex-direction: row;
/* background-color: grey; */
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.flexitem{
background-color: grey;
border: 5px solid black;
margin: 10px;
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<div style="position: fixed; height: 100%; width: 150px; background-color: grey; top: 0px;">
<br>
<a href="index.html" style="color: goldenrod;"> <p>Home</p></a>
<br>
<a href="Collection.html" style="color: goldenrod;"> <p>Catalogue</p></a>
<br>
<a href="Infopage.html" style="color: goldenrod;"> <p>About us</p></a>
<br>
<a href="Faq.html" style="color: goldenrod;"> <p>FAQ</p></a>
<br>
<a href="Contactpage.html" style="color: goldenrod;"> <p>Contact</p></a>
</div>
<div class="flexcontainer" style="margin-left: 150px;">
<div class="flexitem">
<h1 style="font-size: 150%; color: white;">Basic Desk Lamp</h1>
<img src="lamp1.jpg" alt="lamp photo" width="200px" height="200px" style="margin-left: auto; margin-right: auto; display: block;" >
<p style="font-size: 150%; color: white; margin-top: 7px;">Cost: $35</p>
</div>
<div class="flexitem">
<h1 style="font-size: 150%; color: white;">White Lamp</h1>
<img src="lamp2.jpg" alt="lamp photo" width="200px" height="200px" style="margin-left: auto; margin-right: auto; display: block" >
<p style="font-size: 150%; color: white; margin-top: 7px;">Cost: $50</p>
</div>
<div class="flexitem">
<h1 style="font-size: 150%; color: white;">Modern Lamp</h1>
<img src="lamp3.jpg" alt="lamp photo" width="200px" height="200px" style="margin-left: auto; margin-right: auto; display: block" >
<p style="font-size: 150%; color: white; margin-top: 7px;">Cost: $70</p>
</div>
<div class="flexitem">
<h1 style="font-size: 150%; color: white;">Tall lamp</h1>
<img src="lamp4.jpg" alt="lamp photo" width="200px" height="200px" style="margin-left: auto; margin-right: auto; display: block" >
<p style="font-size: 150%; color: white; margin-top: 7px;">Cost: $85</p>
</div>
<div class="flexitem">
<h1 style="font-size: 150%; color: white;">Table Lamp</h1>
<img src="lamp5.jpg" alt="lamp photo" width="200px" height="200px" style="margin-left: auto; margin-right: auto; display: block" >
<p style="font-size: 150%; color: white; margin-top: 7px;">Cost: $60</p>
</div>
<div class="flexitem">
<h1 style="font-size: 150%; color: white;">Modern Desk Lamp</h1>
<img src="lamp6.jpg" alt="lamp photo" width="200px" height="200px" style="margin-left: auto; margin-right: auto; display: block" >
<p style="font-size: 150%; color: white; margin-top: 7px;">Cost: $75</p>
</div>
</div>
<div>test</div>
<!--style="width: 50%; margin-left: auto; margin-right: auto; display: block;"-->
</body>
</html>