-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuy.html
More file actions
96 lines (96 loc) · 1.29 KB
/
buy.html
File metadata and controls
96 lines (96 loc) · 1.29 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
<html>
<title>
buy
</title>
<style>
body{
background-image:url("b.jpg");
background-size:cover;
}
h3{
font-family:Banff;
font-size:50px;
}
h2
{
font-size:55px;
margin-left:40px;
padding:0px;
margin:0px;
font-family:cursive;
margin-top:-26px;
}
h1
{
margin-top:-20px;
}
.box1
{
color:white;
position:absolute;
width:400px;
height:360px;
padding:40px;
top:29%;
left:32%;
transform-translate:(-50%,-50%);
background:rgba(0,0,0,.8);
box-shadow:0 15px 25px rgba(0,0,0,.8);
border-radius:10px;
}
.box input{
width:300px;
pointer-event:none;
font-size:20px;
background:transparent;
border:none;
border-bottom:3px solid white;
color:white;
height:28px;
outline:none;
}
.box input[type=submit]
{
color:black;
background-color:white;
border:2px solid white;
border-radius:12px;
width:30%;
}
ul li a
{
color:white;
text-decoration:none;
}
ul li
{
list-style:none;
}
ul li ul li
{
display:none;
}
ul li:hover ul li
{
display:block;
}
</style>
<body>
<h2>PET<sub>pyaar</sub></h2>
<h3> <center>love and adopt pet....</center></h3>
<div class="box1">
<h1><center>bill info</center></h1>
<div class="box">
Name:<br>
<input type="text"><br><br>
Zip code:<br>
<input type="text"><br><br>
Address:<br>
<input type="text"><br><br>
Mobile:<br>
<input type="text"><br><br>
<input type="submit" value="Shop Now">
</div>
</div>
</body>
</html>