-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallary.html
More file actions
60 lines (49 loc) · 1.92 KB
/
gallary.html
File metadata and controls
60 lines (49 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallary</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="contact.html">Contact Me</a></li>
<li><a href="gallary.html"> My Gallary</a></li>
</ul>
</nav>
</header>
<main>
<h1>My Gallary</h1>
<p>
I hope you enjoy my gallary and take your time and view the visual journey!
</p>
<p>
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1zwhySGCEBxRRFYIcQgvOLOpRGqrT3d7Qng&s" alt=" She is Photographer"
width="300" style=" margin-right:20px;">
<img src=" https://cdn.pixabay.com/photo/2024/05/26/10/15/bird-8788491_1280.jpg" width="300" style=" margin-right:20px;""><br>
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSO0WAXrXCpPUATLdTPESSMbq5_q-LDQ7e3Og&s" width="300" style=" margin-left:20px;">
<img src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTtHyQ4-swhNvCV2lm142jxwj7AfX880takXQ&s" width="300" style=" margin-left:20px;"><br>
</p>
</main>
<footer>
<p>
Feel free to rate your favorite photos using the star rating system below.
Your feedback helps me improve and share even better content.
</p><hr>
<form>
<input type="radio" name="rating" value="5" required>☆ ☆ ☆ ☆☆ <br>
<input type="radio" name="rating" value="4" required>☆ ☆ ☆ ☆ <br>
<input type="radio" name="rating" value="3" required>☆ ☆ ☆ <br>
<input type="radio" name="rating" value="2" required>☆ ☆ <br>
<input type="radio" name="rating" value="1" required>☆ <br>
</form>
<p align="right">
<a href="index.html"> Back to Home page</a>
</p>
</footer>
</body>
</html>