-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
120 lines (98 loc) · 2.59 KB
/
main.html
File metadata and controls
120 lines (98 loc) · 2.59 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>Aromagic Candles</title>
<style>
.other-webpages {
background-color: lightblue;
padding: 20px;
margin-left: -10px;
margin-right: -12px;
}
.other-webpages a {
text-decoration: none;
padding: 20px;
}
.site-footer {
background-color: lightblue;
padding: 20px;
margin-left: -10px;
margin-right: -12px;
}
.site-footer a {
text-align: right;
}
.main-display {
margin-top: 20px;
margin-bottom: 20px;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.row-sale-items {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}
.row-sale-items img {
border-radius: 25px;
margin: 10px;
width: 300px;
height: 300px;
}
#label-text {
margin-left: 300px;
}
#main-image {
width: 100%;
height: 600px;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<shop-header-container>
<img src="images/acandleco.jpg" alt="A candle co logo">
<form>
<img src="src/assets/search.jpg" alt="Search">
<input type="text" id="fname" name="fname">
<img src="images/profile.jpg" alt="User profile">
<img src="images/shoppingcart.jpg" alt="Shopping Cart">
</form>
</shop-header-container>
<div class="other-webpages">
<a href="https://www.w3schools.com/">Featured</a>
<a href="https://www.w3schools.com/">Seasonal</a>
<a href="https://www.w3schools.com/">Candle Supplies</a>
<a href="https://www.w3schools.com/">Resource Center</a>
</div>
<img id="main-image" src="src/assets/imgs/candlehome.jpg" alt="A set of candle supplies" class="main-display">
<div class="columns">
<t id="label-text">What's Hot!</t>
<div class="row-sale-items">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
</div>
<div class="row-sale-items">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
</div>
<div class="row-sale-items">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
<img src="images/candlehome.jpg" alt="A set of candle supplies">
</div>
</div>
<div class="site-footer">
<a href="">About</a>
<a href="">Careers</a>
<a href="">Business Offers</a>
<a href="">Patents</a>
</div>
</body>
</html>