-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuy.html
More file actions
81 lines (65 loc) · 2.75 KB
/
Copy pathbuy.html
File metadata and controls
81 lines (65 loc) · 2.75 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
<!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>Buy</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://kit.fontawesome.com/028ae75b8b.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<img src="img/bg 1.png" alt="" class="zeropad" >
<a href="about.html"><h3 class="about">About</h3></a>
<a href="index.html"><img src="/img/logo.png" alt="" class="logo"></a>
<div class="box1">
<div class="center">
<div class="w3-container">
<h2 class="hidden">Slideshow Caption</h2>
</div>
<div class="w3-content w3-display-container">
<div class="w3-display-container mySlides">
<img src="/img/bg-buy.png" style="width:100%">
</div>
<div class="w3-display-container mySlides">
<img src="img/bg-buy-2.png" style="width:100%">
</div>
<div class="w3-display-container mySlides">
<img src="img/bg-buy-3.png" style="width:100%">
</div>
<button class="w3-button w3-display-left w3-black" onclick="plusDivs(-1)">❮</button>
<button class="w3-button w3-display-right w3-black" onclick="plusDivs(1)">❯</button>
</div>
<form method="post" >
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Username</label>
</div>
<div class="txt_field">
<input type="number" required>
<span></span>
<label>Amount</label>
</div>
<div class="txt_field">
<input type="number" required>
<span></span>
<label>Phone</label>
</div>
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Region</label>
</div>
<a href="buy2.html"><button type="submit" class="submit">Buy</button></a>
<p></p>
</form>
</div>
</div>
<img src="/img/ilus.png" class="ilus" alt="">
</body>
</html>