-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbusiness-page.html
More file actions
81 lines (78 loc) · 2.91 KB
/
business-page.html
File metadata and controls
81 lines (78 loc) · 2.91 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>
<head>
<title>Business Page</title>
<link rel="stylesheet" href="css\style.css">
<script src="https://kit.fontawesome.com/15d341663e.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class = "navigation">
<ul>
<li>Home</li>
<li>About Us</li>
</ul>
</div>
</header>
<div class="banner">
<h1 class="banner-text">Placeholder Name</h1>
</div>
<article>
<!--C:\Users\maxim\hackSC-pollen\Business Page\Images\Nightshade.jpg -->
<div class="rating-section">
<h3 class="user-ratings">Covid Safety Rating:
<div class="ratings">
<div class="empty-stars"></div>
<div class="full-stars" style="width:70%"></div>
</div>
</h3>
<hr>
<label for="covid-slider" class="input-description">How was your covid safety experience?</label>
<br>
<div class="slider">
<form onsubmit="sConsole(event)">
<input type="range" min="1" max="5" step="1"
id="covid-slider">
<button class="button" type="submit">Rate!</button>
</form>
</div>
</div>
<div class="rating-section">
<h3 class="user-ratings">Line Length Rating:
<div class="ratings">
<div class="empty-stars"></div>
<div class="full-stars" style="width:70%"></div>
</div>
</h3>
<hr>
<label for="line-slider" class="input-description">How was the line-wait (5 Stars for Fast)?</label>
<br>
<div class="slider">
<form onsubmit="sConsole(event)">
<input type="range" min="1" max="5" step="1"
id="line-slider">
<button class="button" type="submit">Rate!</button>
</form>
</div>
</div>
<!--<div class="customer-review-header">
<h2>Customer Reviews</h2>
<div id="customer-reviews">
<h3 id="customer-name">Sharron McPlaceHolder</h3>
<p id="customer-text">Blah blah this place sucks</p>
<h3 id="customer-name">Phil McPlaceHolder</h3>
<p id="customer-text">I agree with my wife this place sucks</p>
</div>
</div> -->
<div class="gallery">
<img src="Images\rest1im1.jpg" class="gallery-highlight">
<div class="preview">
<img src="Images\rest1im1.jpg" class="active">
<img src="Images\rest1im2.jpg">
<img src="Images\rest1im3.jpeg">
</div>
</div>
</article>
</body>
</html>
<script src="scripting.js"></script>