-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
131 lines (109 loc) · 3.51 KB
/
index3.html
File metadata and controls
131 lines (109 loc) · 3.51 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
125
126
127
128
129
130
131
<!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>about us</title>
<style>
.car {
display: block;
background-color: rgb(49, 148, 107);
color: crimson;
text-align: center;
margin: 20px;
padding: 10px;
}
#car {
background-color: rgb(179, 255, 179);
color: rgb(206, 0, 0);
margin: 14px;
padding: 5px;
}
.cont {
background-color: rgb(255, 238, 83);
color: darkorchid;
font-size: large;
display: block;
}
#nav {
background-color: rgb(49, 1, 1);
padding: 14px 16px;
list-style-type: none;
margin: 0;
}
#nav a {
color: red;
padding: 14px 16px;
}
</style>
</head>
<body>
<h1 class="car">Welcome to about us section</h1>
<nav id="nav">
<a href="Home.html">Home</a>
<a href="About us.html">About Us</a>
<a href="Contact us.html">Contact Us</a>
</nav>
<div id="car">
<marquee behavior="scroll" direction="left" scrolldelay="100">
<h1>Welome To Cars World</h1>
</marquee>
</div>
<b>
<div class="cont">
<ul>
<ol type="1">
<li>ROLLS ROYS</li>
CARS :->
<ol type="1">
<li>Ghost </li>
<li>Culinan </li>
<li>Phanthom</li>
<li>Drawn</li>
</ol>
<li>Jaguar</li>
CARS :->
<ol type="1">
<li>Jaguar XE </li>
<li>Jaguar XF</li>
<li>Jaguar Xj</li>
<li>Jaguar F-pace </li>
</ol>
<li>Land Rover</li>
CARS :->
<ol type="1">
<li>Land Rover Freelander</li>
<li>Range Rover Velar</li>
<li>Range Rover Sports </li>
<li>Range Rover Evoque </li>
<li>Range Rover Discovery</li>
<li>Range Rover Defender</li>
</ol>
<li>Mercedes</li>
CARS :->
<ol type="1">
<li>G-Wagon </li>
<li>S-Class </li>
<li>E-Class</li>
<li>C-Class</li>
<li>A-Class</li>
<li>Mercedes Gls </li>
<li>Mercedes Gle </li>
</ol>
<li>Toyota</li>
CARS :->
<ol type="1">
<li>Land Cruiser </li>
<li>Fortuner</li>
<li>Inova Crysta</li>
<li>Etios</li>
<li>Urban Cruiser</li>
<li>Glanza </li>
</ol>
</ol>
</div>
</b>
</ul>
</body>
</html>