-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsales.html
More file actions
49 lines (43 loc) · 1.76 KB
/
sales.html
File metadata and controls
49 lines (43 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Salmon Cookies</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Itim&display=swap" rel="stylesheet">
<link rel="shortcut icon"
href="https://codefellows.github.io/code-201-guide/curriculum/class-06/lab/assets/salmon.png"
type="image/x-icon">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="index.html" id="home">Home</a>
<div id="container">
<form action="" id="cookiestand">
<fieldset>
<legend>
cookiestand
</legend>
<label for="branchName">Branch Name</label>
<input type="text" name="branchName" id="branchName" placeholder="Branchname">
<br>
<label for="min">The minimum number of customers per hour</label>
<input type="text" name="min" id="min"><br>
<label for="max">The maximum number of customers per hour</label>
<input type="text" name="max" id="max"><br>
<label for="avg">The average number of cookies purchased per customer</label>
<input type="text" name="avg" id="avg">
<label for="submit">Submit</label><br>
<input type="submit" value="add abranch">
</fieldset>
</form>
</div>
<footer id="salesfooter">
<p class="footer">CopyRights pat's 2021</p>
</footer>
<script src="js/app.js"></script>
</body>
</html>