-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
96 lines (88 loc) · 3.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>History Of Steve Jobs: Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Into the mind of Steve Jobs">
<meta name="author" content="Peter Hagen">
<link rel="stylesheet" href="design.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<img src="images/stlogo.png" alt="site logo" width="86" height="100">
<div>
<h1>History of Steve Jobs</h1>
<p>Into the mind of Steve Jobs</p>
</div>
</header>
<nav>
<ul>
<li>
<a href="index.html">History of Steve Jobs</a>
</li>
<li>
<a href="apple.html">History of Apple</a>
</li>
<li>
<a href="next.html">History of NeXT</a>
</li>
<li class="active">
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="form.html">Review your experience</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
<li>
<a href="videos.html">Videos</a>
</li>
</ul>
</nav>
<main>
<div class="gallery">
<figure>
<img src="images/airpods.jfif" alt="Air Pods" width="225" height="225" loading="lazy">
<figcaption>Air Pods</figcaption>
</figure>
<figure>
<img src="images/apple1.jfif" alt="Apple Computer" width="277" height="182" loading="lazy">
<figcaption>Apple Computer</figcaption>
</figure>
<figure>
<img src="images/apple2.jfif" alt="Apple Computer 2" width="274" height="184" loading="lazy">
<figcaption>Apple Computer 2</figcaption>
</figure>
<figure>
<img src="images/apple-watch.jfif" alt="Apple Watch" width="225" height="225" loading="lazy">
<figcaption>Apple Watch</figcaption>
</figure>
<figure>
<img src="images/imac.jfif" alt="iMac" width="259" height="194" loading="lazy">
<figcaption>iMac</figcaption>
</figure>
<figure>
<img src="images/iphone-4.jfif" alt="iPhone 4" width="259" height="194" loading="lazy">
<figcaption>iPhone 4</figcaption>
</figure>
<figure>
<img src="images/macbook.jfif" alt="MacBook" width="275" height="183" loading="lazy">
<figcaption>MacBook</figcaption>
</figure>
<figure>
<img src="images/macintosh.jfif" alt="Macintosh" width="275" height="183" loading="lazy">
<figcaption>Macintosh</figcaption>
</figure>
</div>
</main>
<footer>
<p>© 2023 • Peter Hagen • <a href="mailto:[email protected]">Email Me</a></p>
</footer>
</body>
</html>