-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<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=Heebo:wght@300&display=swap" rel="stylesheet">
<link rel="icon" href="https://img.icons8.com/ios-glyphs/30/000000/moon-symbol.png">
<title> The Moon </title>
<link rel="stylesheet" type="text/css" href="css/moon.css">
</head>
<body>
<!-- header element-->
<header>
<img src="img/moon.png" alt="Mesmerizing photo of the Moon">
<h1> Wonderful Moon </h1>
</header>
<!-- main elements -->
<main>
<h2>About my photography</h2>
<p> Colorful sunset photo, focusing on the moon, taken by Alex Brites, downloaded from Pexels</p>
<img src="img/Webp.net-resizeimage.jpg" alt="Twilight Moon - Alex Brites / Pexels">
<p class="caption">Twilight Moon by Alex Brites</p>
<!-- tools -->
<h2>Tools used to create this photo</h2>
<ol>
<li>iPhone 8 Plus</li>
<li>Adobe Photoshop</li>
<li>Adobe Lightroom CC </li>
</ol>
<!-- more photos -->
<h2>Check out another photos I love</h2>
<ul>
<li><a target="_blank" href="https://www.pexels.com/photo/5970961/">Sunset over a Body of Water</a></li>
<li><a target="_blank" href="https://www.pexels.com/photo/jetty-sea-dawn-landscape-5785894/">Man on a bridge</a></li>
<li><a target="_blank" href="https://www.pexels.com/photo/city-dawn-sky-sunset-5656257/">Sunset over Montevideo City</a></li>
</ul>
</main>
<!-- footer element -->
<footer>
Site created watching a class on <a target="_blank" href="https://www.skillshare.com/home">Skillshare</a> , and using GitHub and google sources. © Alex Brites / etereals
</footer>
</body>
</html>