-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
60 lines (60 loc) · 1.95 KB
/
welcome.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
<!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">
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<title>Welcome page</title>
<style>
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Roboto', sans-serif;
}
img{
width: 100%;
}
#welcome{
width: 400px;
height: 300px;
margin: auto;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
border-radius: 200px;
text-align: center;
padding: 18px;
color: #df873a;
background-color: #e8e5e0;
position: absolute;
top: 70px;
left: 36%;
font-size: 14px;
}
#two{
margin-top: 12px;
background-color: #18a310;
color: white;
padding: 13px;
width: 80%;
margin: auto;
border-radius: 28px;
font-size: 24px;
}
a{
text-decoration: none;
}
</style>
</head>
<body>
<img src="https://www.ecorentacar.com/blog/wp-content/uploads/2019/09/Car-Image.jpg" alt="">
<div id="welcome">
<h1>Welcome In Our <br> Zoomcar Family! <br> We Hope you will find here, What you looking for </h1>
<a href="home.html"><h1 id="two">Welcome on our Website</h1></a>
<h1><i class="fa-sharp fa-solid fa-arrow-up"></i></h1>
<h1>Click Here</h1>
</div>
</body>
</html>