-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsales.html
More file actions
63 lines (55 loc) · 1.97 KB
/
sales.html
File metadata and controls
63 lines (55 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Salmon Cookies</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Salmon Cookies</h1>
<nav>
<ul>
<li><a href="#">ABOUT US</a></li>
<li><a href="sales.html">SALES</a></li>
<li><a href="index.html">HOME</a></li>
</ul>
</nav>
</header>
<main>
<div id="div2">
<section id="salesh2">
<h2>Our Sales All Over The World</h2>
<br>
</section>
<section id="parent"></section>
<form id="form">
<fieldset>
<legend>Add New Info For Branch</legend>
<label for="BranchLocation">Branch Location: </label>
<input type="text" name="BranchLocation" placeholder="ex:amman" required>
<br>
<label for="minCust">Minimum Customers per Hour: </label>
<input type="number" name="minCust" required>
<br>
<label for="maxCust">Maximum Customers per Hour: </label>
<input type="number" name="maxCust" required>
<br>
<label for="cookiesPerCustomer">Cookies per Customer</label>
<input type="number" name="cookiesPerCustomer" step="0.1" required>
<br>
<input type="submit" value="Click TO Submit">
</fieldset>
</form>
</div>
</main>
<footer id="last2">
<section id="social">
<img src="img/fb-icon.png" alt=""><img src="img/insta-icon.png" alt=""><img src="img/twit-icon.png" alt="">
<p>FOLLOW US ON SOCIAL MEDIA</p>
</section>
<p id="copy">© All Rights Reserved To Salmon Cookies - Sultan Elayan</p>
</footer>
<script src="js/app.js"></script>
</body>
</html>