-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog In.html
97 lines (88 loc) · 3.36 KB
/
Log In.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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css">
<div class="container-fluid">
<div class="container">
<style>
body {
background:linear-gradient(-100deg,#f33d06 50%,#fff);
}
</style>
</head>
<body>
<!--Nav Bar-->
<nav class="navbar navbar-expand-lg bg-light fs-5">
<a class="navbar-brand" href="Log In.html">Log In</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="Menu.html">Menu<span class="sr-only">
</span></a>
<a class="nav-item nav-link" href="Contact Us.html">Contact Us</a>
<a class="nav-item nav-link" href="Careers.html">Careers</a>
</div>
</div>
</nav>
<form class="row g-3">
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Password</label>
<input type="password" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label">Address</label>
<input type="text" class="form-control" id="inputAddress" placeholder="1234 Main St">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label">Address 2</label>
<input type="text" class="form-control" id="inputAddress2" placeholder="Apartment, studio, or floor">
</div>
<div class="col-md-6">
<label for="inputCity" class="form-label">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="col-md-4">
<label for="inputState" class="form-label">State</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="col-md-2">
<label for="inputZip" class="form-label">Zip</label>
<input type="text" class="form-control" id="inputZip">
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Tick
</label>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
<!--Marquee-->
<style>
#poop {
text-shadow: -2px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
font-style: bold;
font-size:2em;
font-weight:bold;
color: rgb(222, 246, 7);
</style>
<div id="poop"> <marquee behavior="scroll" direction="left">Dont forget to avail our promo! Buy One! Take One! For a limited time only! Offer good while supply last!
</marquee>
</body>
</html>