-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathveiw.html
100 lines (93 loc) · 2.17 KB
/
veiw.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
background-color: black;
color: white;
}
nav{
display: flex;
justify-content: center;
justify-content: space-around;
margin-top: 26px;
}
ul{
display: flex;
list-style: none;
}
nav h1{
font-size: 30px;
}
ul li a{
margin-inline: 30px;
font-size: 24px;
border-bottom: 3px solid rgb(238, 8, 8);
border-radius: 3px;
cursor: pointer;
}
ul li a:hover{
border: 2px solid white;
}
img{
width: 45%;
}
.container{
display: flex;
justify-content: center ;
justify-content: space-around;
margin-top: 70px;
}
.container .text{
margin-top:40px;
}
.text h1{
font-size: 120px;
}
.text p{
font-size: 26px;
margin-top: 50px;
}
.text button{
width: 160px;
height: 40px;
background-color: red;
color: white;
font-size: 24px;
border: none;
margin-top: 50px;
}
.text button:hover{
background-color: brown;
cursor: pointer;
}
</style>
</head>
<body>
<nav>
<h1>COOKIES</h1>
<ul>
<li><a href="index.html" style="color: white;">Home</a></li>
<li><a href="order.html" style="color: white;">ORDER'S</a></li>
<li><a href="VARTIETY.html" style="color: white;">VARTIETY</a></li>
<li><a href="contact.html" style="color: white;">CONTACT</a></li>
</ul>
</nav>
<br>
<br>
<center><img src="https://sachascakes.com/cdn/shop/files/CocomelonCakePost20234_720x.png?v=1684576946" alt=""></center>
<br>
<center><img src="https://sachascakes.com/cdn/shop/files/Differnettypeposts2023Bir361_720x.png?v=1685967067" alt=""></center>
<br>
<center><img src="https://theelegance.pk/wp-content/uploads/2022/02/Send-Chocolate-Basket-Gift-Online-5.jpg" alt=""></center>
<br>
<center><img src="https://theflowerstudio.pk/wp-content/uploads/2018/01/choco-basket-1-2.jpg" alt=""></center>
</body>
</html>