-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gallery.html
61 lines (50 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table border="1px solid black">
<tr >
<th><img src="images/logo.jpg" alt="logo"></th>
<th class="tHeading"><a href="home.html">Home</a></th>
<th class="tHeading"><a href="About.html">About</a></th>
<th class="tHeading"><a href="Gallery.html">Gallery</a></th>
<th class="tHeading"><a href="Contact.html">Contact</a></th>
<th class="tHeading"><a href="Login.html">Login</a></th>
<th class="tHeading"><a href="Register.html">Register</a></th>
</tr>
</table>
<hr>
<h1>This is Gallery Page</h1>
<hr>
<table>
<tr>
<td><img src="images/1.jpg" alt="image1"></td>
<td><img src="images/2.jpg" alt="image2"></td>
<td><img src="images/3.jpg" alt="image3"></td>
<td><img src="images/4.jpg" alt="image4"></td>
<td><img src="images/5.jpg" alt="image5"></td>
<td><img src="images/6.jpg" alt="image6"></td>
</tr>
</table>
<hr>
<h1>HTML5: Figure and Figure Caption</h1>
<h2> <figure> </figure></h2>
<p>HTML5 intoduced new element to contain image and its caption so that the two are associated. You can have more than one image in the tag as long as they all share the same caption</p>
<h2><figcaption></figcaption></h2>
<p>This Element has been added in HTML5 to allow authors to add caption of the images.</p>
<figure>
<img src="images/1.jpg" alt="first image">
<figcaption>Tree with lightining in the cloud, worth to watch.</figcaption>
</figure>
<figure>
<img src="images/2.jpg" alt="Second image">
<figcaption>Amazing Mountain fall with Rising sun.</figcaption>
</figure>
<hr>
<center><p>Copyright © 2021. All rights are reserverd.</p></center>