-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb2.html
More file actions
77 lines (71 loc) · 2.13 KB
/
Copy pathweb2.html
File metadata and controls
77 lines (71 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.main{
width: 100%;
height: 50px;
background-color: white;
color:dimgray;
display: flex;
justify-content: space-around;
}
.one{
display: flex;
gap: 20px;
padding: 15px;
}
.landing{
margin-right: 34%;
display: flex;
gap: 10px;
padding: 10px;
font-size: 25px;
}
.two{
color: black;
display: flex;
gap: 100px;
justify-content:space-around;
padding-top: 100px;
font-size:50px;
}
.three{
height: 43px;
width: 140px;
color: white;
border-radius: 7px;
background-color: rgba(206, 36, 36, 0.804);
}
.four{
margin-top: 7%;
color: dimgray;
font-size: 15px;
}
</style>
<body>
<div>
<div class="main">
<div class="landing">Delivery</div>
<div class="one">
<div>Home</div>
<div>About</div>
<div>Sign up</div>
<div>How it works</div>
<div>Testimonials</div>
</div>
</div>
<div class="two">
<div> <div>Home Delivery From</div>
<div>Stores Near You</div>
<div class="four">Lorem ipsum dolor sit amet, consetetur sadispscing elitr, sed <br> diam nonumy eirmod tempor invidunt ut labore et dolore <br> magna aliquyam erat, sed diam voluptua</div>
<button class="three">Download App</button></div>
<div><img src="mobile-shopping-concept-a-man-and-a-woman-buy-things-in-the-online-store-through-a-big-smartphone-e-commerce-and-online-shopping-illustration-in-flat-style-vector.jpg" height="400px" width="450px"></div>
</div>
</div>
</body>
</html>