-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
103 lines (67 loc) · 3.45 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="fruitstyle.css">
<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=Permanent+Marker&display=swap" rel="stylesheet">
<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=Righteous&display=swap" rel="stylesheet">
<title>Home</title>
<style>
body {
background-image: url('images/bground.png');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
color: white;
}
</style>
</head>
<body>
<!-- header -->
<header>
<img src="icons/smoothie.png" style="vertical-align:middle; display:inline;" width="90" alt="smoothie logo">
<div class="title">
Smoothie Maker
</div>
<br>
<a href="#" class="button-active" role="button" style="color: white; pointer-events: none;">Home</a>
<a href="pages/get.started.htm" role="button" class="button">Products</a>
<a href="pages/about.us.htm" role="button" class="button">About Us</a>
<a href="pages/questions.htm" role="button" class="button">Questions</a>
</header>
<br>
<br>
<!-- Content Here -->
<div class="container" role="main">
<h1>Welcome!</h1>
<br>
<p> This website is an idea being brought to life by Parker Designs. Smoothie Maker has been created to make drinking smoothies easier than it ever has! Here you are able to choose each ingredient you wish instead of having to choose a drink with all the flavours already picked out. Eliminate having a "special request" towards a drink, or having something added or removed, you will never have to drink a drink with an ingredient you despise ever again! </p>
<br>
<p> If you are a returning customer and know the options, <a href="pages/form.htm" class="link">click here</a> to go straight to the order page. If not, then continue reading to read more.</p>
<br>
<p> This is the future of online living! So why not make it colourful and inviting RIGHT NOW instead of waiting for everyone else to do so first? Here you will be able to choose the fruit, the mixer, the extras and the size of the cup, as well as giving the drink a custom name of your choosing, with only a character limit to consider. </p>
<br>
<p> We hope you enjoy your stay and see what you are craving in your next smoothie! <a href="pages/get.started.htm" class="link">Click here</a> to see our available options ASAP or continue to or Products page in your own time.</p>
</div>
<br>
<br>
<br>
<br>
<footer>
<a href="pages/about.us.htm"><img src="icons/smoothie.png" class="icon" alt="smoothie logo"></a>
<div class="foot-nav">
<a href="#" class="nav-link" style="pointer-events: none; text-decoration: underline;">Home</a>
<a href="pages/get.started.htm" class="nav-link">Products</a>
<a href="pages/questions.htm" class="nav-link">Questions</a>
<a href="pages/disclaimer.htm" class="nav-link"> Disclaimer</a>
</div>
<p class="rights"> © 2022 Parker Designs</p>
</footer>
</body>
</html>