-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.17 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Html-css-Js-project</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.row {
padding: 15px 40px;
}
.container {
padding: 0px 15px;
}
h1 {
margin-bottom: 40px;
}
ol {
margin-left: 40px;
}
</style>
</head>
<body>
<div class="row">
<div class="container">
<h1>Html-CSS-Js-Project</h1>
<p>
<ol list-style="1">
<li><a href="./Hotel-booking/index.html">Hotel Booking(Rayal park)</a></li>
<li><a href="./Weather-App/index.html">Weather App</a></li>
<li><a href="./Travel-Hub/index.html">Travel-Hub</a></li>
<li><a href="./Handyman-Services/index.html">Handyman Services</a></li>
<li><a href="./Elvo-Construction/index.html">Elvo Construction</a></li>
</ol>
</p>
</div>
</div>
</body>
</html>