-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
129 lines (127 loc) · 6.29 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<!--
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
-->
<meta name="description" content="Ferrari Testarossa"> <!-- This shows up under the page when Googled -->
<title>Ferrari Testarossa | Gallery</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="main-header">
<nav class="main-nav nav"> <!-- Navigation bar -->
<ul> <!-- UNORDERED List -->
<!-- List Items -->
<li><a href="index.html">HOME</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li><a href="production.html">PRODUCTION</a></li>
</ul>
</nav> <!-- End navigation bar -->
<h1 class="car-name car-name-large">Ferrari Testarossa</h1>
</header>
<section class="container content-section">
<h2 class="section-header">EXTERIOR</h2>
<div class="gallery-items">
<div class="gallery-item">
<span class="gallery-item-title">Rear</span>
<img class="gallery-item-image" src="Images/blue.jpg">
<div class="gallery-item-details">
<span class="gallery-item-text">Tail lights</span>
<button class="btn btn-primary gallery-item-button" role="button">Blue</button>
</div>
</div>
<div class="gallery-item">
<span class="gallery-item-title">Doors</span>
<img class="gallery-item-image" src="Images/white.jpg">
<div class="gallery-item-details">
<span class="gallery-item-text">Side Strakes</span>
<button class="btn btn-primary gallery-item-button" role="button">White</button>
</div>
</div>
<div class="gallery-item">
<span class="gallery-item-title">Scenic View</span>
<img class="gallery-item-image" src="Images/red.jpg">
<div class="gallery-item-details">
<span class="gallery-item-text">Signature Red</span>
<button class="btn btn-primary gallery-item-button" role="button">Red</button>
</div>
</div>
<div class="gallery-item">
<span class="gallery-item-title">Front</span>
<img class="gallery-item-image" src="Images/yellow.webp">
<div class="gallery-item-details">
<span class="gallery-item-text">Pop-up Headlights</span>
<button class="btn btn-primary gallery-item-button" role="button">Yellow</button>
</div>
</div>
</div>
</section>
<section class="container content-section">
<h2 class="section-header">INTERIOR</h2>
<div class="gallery-items">
<div class="gallery-item">
<span class="gallery-item-title">Cockpit</span>
<img class="gallery-item-image" src="Images/cockpit.jpeg">
<div class="gallery-item-details">
<span class="gallery-item-text">Seats and Center Control Stack</span>
<button class="btn btn-primary gallery-item-button" role="button">Red</button>
</div>
</div>
<div class="gallery-item">
<span class="gallery-item-title">Sliding Seat Belts</span>
<img class="gallery-item-image" src="Images/seatbelts.jpg">
<div class="gallery-item-details">
<span class="gallery-item-text">Automatically move when door is opened</span>
<button class="btn btn-primary gallery-item-button" role="button">Tan</button>
</div>
</div>
<div class="gallery-item">
<span class="gallery-item-title">Center Control Stack</span>
<img class="gallery-item-image" src="Images/center.jpg">
<div class="gallery-item-details">
<span class="gallery-item-text">Standard H</span>
<button class="btn btn-primary gallery-item-button" role="button">Black</button>
</div>
</div>
<div class="gallery-item">
<span class="gallery-item-title">Owner's Literature</span>
<img class="gallery-item-image" src="Images/manual.jpg">
<div class="gallery-item-details">
<span class="gallery-item-text">Manual and Case</span>
<button class="btn btn-primary gallery-item-button" role="button">Yellow</button>
</div>
</div>
</div>
</section>
<br>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="car-name">Testarossa</h3>
<ul class="nav footer-nav">
<li>
<a href="https://www.autotrader.com/cars-for-sale/all-cars/ferrari/testarossa/beverly-hills-ca-90210?dma=&searchRadius=0&isNewSearch=true&marketExtension=include&showAccelerateBanner=false&sortBy=relevance&numRecords=25" target="_blank">
<img src="Images/AutoTrader.png">
</a>
</li> <!-- AutoTrader -->
<li>
<a href="https://www.ebay.com/sch/Cars-Trucks/6001/i.html?makeval=Ferrari&modelval=Testarossa&LH_ItemCondition=3000%7C1000%7C2500&_nkw=Ferrari+Testarossa&rt=nc&_oaa=1&_dcat=157049&UF_single_selection=Make%3AFerrari%2CModel%3ATestarossa&UF_context=finderType%3AVEHICLE_FINDER&_sacat=6001&_stpos=90210&_fspt=1" target="_blank">
<img src="Images/eBay Motors.png">
</a>
</li> <!-- eBay Motors -->
<li>
<a href="https://www.ferrari.com/en-EN/auto/testarossa" target="_blank">
<img src="Images/Ferrari.png"></li> <!-- Ferrari -->
</a>
</ul>
<br>
<br>
</div>
<div class="footer-text">
Site made by <a href="https://paul-leiva.github.io/" target="_blank">Paul Leiva</a>. Hosted with help from <a href="https://www.heroku.com/" target="_blank">Heroku</a>.
</div>
<br>
</footer>
</body>
</html>