-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhiskey.html
More file actions
134 lines (121 loc) · 5.92 KB
/
whiskey.html
File metadata and controls
134 lines (121 loc) · 5.92 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ALT Soul</title>
<!--bootstrap css link-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link href="stylesheets.css" rel="stylesheet">
<!--flavicon link-->
<link rel="apple-touch-icon" sizes="180x180" href="images/Favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/Favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/Favicon/favicon-16x16.png">
<link rel="manifest" href="images/Favicon/site.webmanifest">
<!--font link-->
<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=Kumbh+Sans:wght@200&display=swap" rel="stylesheet">
</head>
<body onload="">
<header>
<img id="heroImagePages" src="images/Logo/alt_soul_text_green_top.png" alt="Banner image. Text only. Text states aLT soul.">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="vodka.html">Vodka</a></li>
<li><a href="rum.html">Rum</a></li>
<li><a href="whiskey.html">Whiskey</a></li>
<li><a href="saveForLater.html">Saved</a></li>
</ul>
</nav>
</header>
<section class="row vodkaAbout" id="whiskeyAbout">
<h1 class="col-md-2">W<br>H<br>I<br>S<br>K<br>Y</h1>
<p class="col-md-5">
Whisky or whiskey is a type of liquor made from fermented grain mash. Various grains (which may be malted) are used for different
varieties, including barley, corn, rye, and wheat. Whisky is typically aged in wooden casks, which are typically made of charred
white oak. Uncharred white oak casks previously used for the aging of port, rum or sherry are also sometimes used.
<br>
<br>
Whisky is a strictly regulated spirit worldwide with many classes and types. The typical unifying characteristics of the different
classes and types are the fermentation of grains, distillation, and aging in wooden barrels.
</p>
<img class="col-md-5" src="images/alcohol/whisky/whiskey_glass.png" alt="image of whiskey in a glass">
</section>
<section class="row">
<button type="button" class="col-md-1 btn btn-dark" id="whiskeyAboutBtn" onclick="addIt(this.id)">Save</button>
<form class ="col-md-2">
<input type="radio" id="like" value="Like" class="col-md-1" name="likeable">
<label><img src="./images/Icons/like.png" id="likeImg"></label>
<input type="radio" id="dislike" value="Dislike" name="likeable">
<label><img src="./images/Icons/dislike.png" id="dislikeImg"></label>
</form>
</section>
<!-- contact forms-->
<section class="row vodkaAbout">
<div class="col-md-6 newsletterContent">
<form>
<label>Comment</label>
<br>
<input type="text" id="inputComments" class="form-control">
<br>
<label>Name</label>
<br>
<input type="text" id="inputName" class="form-control">
<br>
<button type="submit" onclick="inputSubmit(event)" id="inputSubmitBtn">Submit</button>
</form>
</div>
</section>
<section class="row vodkaAbout" id="commentDisplay">
<div class="col-md-6 newsletterContent" id="displayInput">
</div>
</section>
<!--footer-->
<footer>
<div class="row footerheadings">
<div class="col-md-6">
<h2>Newsletter</h2>
</div>
<div class="col-md-6">
<h2>Get in Touch!</h2>
</div>
</div>
<!--newsletter form subscription-->
<div class="row footerContent">
<div class="col-md-6 newsletterContent">
<form>
<input type="text" class="form-control" placeholder="Name">
<input type="email" class="form-control" placeholder="Email">
<input type="number" class="form-control" placeholder="Cell number">
<button type="submit">Submit</button>
<br>
</form>
<!--radio form to allow users to select how they'd like to be contacted-->
<form>
<h3>Please select how you'd like to recieve news from us!</h3>
<input type="radio" id="contactChoice1" name="contact" value="email">
<label for="contactChoice1">Email</label>
<input type="radio" id="contactChoice2" name="contact" value="phone">
<label for="contactChoice2">SMS</label>
<button type="submit">Select</button>
</form>
</div>
<!--social links that link out to the companies social media sites, allowing the user to contact the company-->
<div class="col-md-6 getInTouchContent">
<img src="images/Icons/Facebook.png" alt="clickable facebook logo">
<h3><a href ="https://www.facebook.com">Facebook</a></h3>
<br>
<img src="images/Icons/Instagram.png" alt="clickable instagram logo">
<h3><a href = "https://www.instagram.com" >Instagram</a></h3>
<br>
<img src="images/Icons/Twitter.png" alt="clickable twitter logo">
<h3><a href="https://www.twitter.com">Twitter</a></h3>
</div>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>