-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
157 lines (126 loc) · 5.84 KB
/
index.html
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!-- https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Document_and_website_structure -->
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header -->
<!-- https://www.w3schools.com/html/html5_semantic_elements.asp -->
<!-- https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content -->
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Assignment 1 - page 1</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="assignment1.css">
</head>
<body>
<header>
<nav id="mainMenu">
<a href="pageTwo.html">My Account</a>
<a href="#">Wish List</a>
<a href="#">Shopping Cart</a>
<a href="#">Checkout</a>
</nav>
</header>
<main>
<h1>Art Store</h1>
<nav id="navMenu">
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Art Works</a>
<a href="#">Artists</a>
</nav>
<section>
<h2>Self-portrait in a Straw Hat</h2>
<p> By <a href="#">Louise Elisabeth Lebrun</a></p>
<div id="productView">
<div class="alignleft">
<img src="113010.jpg">
</div>
<div id="description">
<p> The painting appears, after cleaning, to be an autograph replica of a picture, the original of which
was painted in Brusselsin 1782 in free imitation of Rubens's 'Chapeau de Paille', which Vigée Le Brun had seen in Antwerp.
It was exhibited in Paris in 1782 at the Salon de la Correspondance.
Vigée Le Brun's original is recorded in a private collection in France.
</p>
<p id="priceTag"> $700</p>
<div class="buttonBox">
<button>Add to Wish List</button>
<button>Add to Shopping Cart</button>
</div>
<h3>Product Details</h3>
<hr>
<!-- here is the table -->
<table>
<tr>
<th>Date:</th> <td>1982</td>
</tr>
<tr>
<th>Medium:</th> <td>Oil on canvas</td>
</tr>
<tr>
<th>Dimentions:</th> <td>98cm x 71cm</td>
</tr>
<tr>
<th>Home:</th> <td><a href="#">National Gallery, London</a></td>
</tr>
<tr>
<th>Genres:</th> <td><a href="#">Realism, Rococo</a></td>
</tr>
<tr>
<th>Subject:</th> <td><a href="#">People, Arts</a></td>
</tr>
</table>
</div> <!-- end of description -->
</div> <!-- end of productView -->
<h3>Similar Products</h3>
<hr>
<div id="similarProducts">
<div class="productPreview">
<div class="productCard">
<img src="thumbs/116010.jpg"> <br>
<a href="#">Artist Holding a Thistle</a> <br>
<div>
<button>View </button>
<button>Wish </button>
<button>Cart</button>
</div>
</div>
</div>
<div class="productPreview">
<div class="productCard">
<img src="thumbs/120010.jpg"> <br>
<a href="#">Portrait of Eleonor of Toledo</a> <br>
<div>
<button>View </button>
<button>Wish </button>
<button>Cart</button>
</div>
</div>
</div>
<div class="productPreview">
<div class="productCard">
<img src="thumbs/107010.jpg"> <br>
<a href="#">Madame de Pompadour</a> <br>
<div>
<button>View </button>
<button>Wish </button>
<button>Cart</button>
</div>
</div>
</div>
<div class="productPreview">
<div class="productCard">
<img src="thumbs/106020.jpg"> <br>
<a href="#">Girl with a Pearl Earrings</a> <br>
<div>
<button>View </button>
<button>Wish </button>
<button>Cart</button>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>All images are copyright of their owners. This is just a hypothetical site © 2023 Copyright Art Store</p>
</footer>
</body>
</html>