-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
124 lines (116 loc) · 4 KB
/
gallery.html
File metadata and controls
124 lines (116 loc) · 4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Lists</title>
</head>
<body>
<header>
<nav class="navBar" id="navbar">
<ul class="logo">
<li>
<a href="./index.html">Company Logo</a>
</li>
</ul>
<ul class="navUl">
<li class="navLi">
<a href="index.html">Home</a>
</li>
<li class="navLi">
<a href="#" id="active">Gallery</a>
</li>
<li class="navLi">
<a href="about-us.html">About us</a>
</li>
<li class="navLi">
<a href="contact-us.html">Contact us</a>
</li>
</ul>
</nav>
</header>
<main class="main">
<div class="banner"></div>
<h1>Lists</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Doloribus, deserunt beatae! Dolorem, ipsam quae! Dolore quis blanditiis nostrum, repellat iure necessitatibus inventore explicabo error nulla impedit non, dolorum quaerat alias!
</p>
<span>How to enjoy lockdown?</span>
<ol>
<li>Learn something new (from your interests)</li>
<li>Listen to loud music (It is cool but not recommended)</li>
<li>Watch some Netflix movie or series</li>
<li>Play video games</li>
</ol>
<span>Recommend courses to Learn:</span>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
</ul>
<span>Some recommendation from us:</span>
<ol>
<li>Some advice to learn:
<ul type="disc">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
</ul>
</li>
<li>Some music to listen:
<ul type="square">
<li>Electro Music</li>
<li>Pop</li>
<li>K-pop</li>
<li>Hip-hop</li>
</ul>
</li>
<li>Some Netflix Movie recommendation:
<ul type="circle">
<li>Some Comedian movie</li>
<li>Another Comedian movie</li>
<li>Maybe a Sci-Fi movie</li>
</ul>
</li>
<li>Video Games recommendation:
<ul>
<li>COD - WarZone</li>
<li>PES 2020</li>
<li>Need For Speed</li>
</ul>
</li>
</ol>
<h3>This is a heading, which is a block</h3>
<p>This is a paragraph, it is also a block</p>
<div style="margin-bottom: 50px;">
<span>This is a span, a span is an inline element</span>
<a href="#">This is a link, a link is also an inline element</a>
<img src="./img/logo.png" alt="google logo">
</div>
</main>
<!-- start images gallery -->
<div class="TitleOfImageGallery">
<h2>Image Gellery</h2>
</div>
<div>
<img src="./img/landscape.jpg" alt="" class="images">
<img src="./img/landscape3.jpg" alt="" class="images">
<img src="./img/landscape2.jpg" alt="" class="images">
</div>
<div>
<img src="./img/cat1.jpg" alt="" class="images">
<img src="./img/cat2.jpg" alt="" class="images">
<img src="./img/cat3.jpg" alt="" class="images">
</div>
<div>
<img src="./img/dog1.jpg" alt="" class="images">
<img src="./img/dog2.jpg" alt="" class="images">
<img src="./img/dog3.jpg" alt="" class="images">
</div>
<!-- end of images gallery -->
<script src="./js/script.js"></script>
</body>
</html>