-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
90 lines (87 loc) · 4.45 KB
/
payment.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
<!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>Furniture Hub</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<!-- bootstrap links -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- bootstrap links -->
<!-- fonts links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<!-- fonts links -->
</head>
<body>
<nav style="top: 0%;" class="navbar navbar-expand-lg sticky" id="navbar">
<div class="container-fluid">
<a class="navbar-brand" href="home.html" id="logo"><span id="span1">F</span>urniture<span> Hub</span></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span><img src="./images/menu.png" alt="" width="30px"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="product.html">Product</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<form class="d-flex" id="search">
<div class="input-group">
<input class="form-control dropdown-toggle" type="search" placeholder="Search" aria-label="Search" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
</div>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Search
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="home.html">Home</a>
<a class="dropdown-item" href="product.html">Product</a>
<a class="dropdown-item" href="about.html">About</a>
<a class="dropdown-item" href="contact.html">Contact</a>
</div>
</div>
</form>
</div>
</div>
</nav>
<div class="payment" style="display: flex;">
<h1 class="payTitle">Personal Information</h1>
<label>Name And Surname</label>
<input type="text" class="payInput">
<label>Phone Number</label>
<input type="text" class="payInput">
<label>Address</label>
<input type="text" class="payInput">
<h2 class="payTitle">Card Information</h2>
<div>
<img src="images/visa.png" alt="" width="40" class="cardIcon">
<img src="images/master.png" alt="" width="40" class="cardIcon">
</div>
<input type="password" class="payInput" placeholder="Card Number">
<div class="cardInfo">
<input type="text" placeholder="cvv" class="cvv">
<input type="date" placeholder="mm yy dd" class="payInput sm">
</div>
<a href="home.html"><button class="payButton">Checkout!</button></a>
<a href="product.html"><span class="close">X</span></a>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>