-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
102 lines (87 loc) · 3.05 KB
/
options.html
File metadata and controls
102 lines (87 loc) · 3.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Roots</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300&family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body class="comic">
<div class="header">
<ul>
<li><img src="Images/logo.png" class = "logoImg"/></li>
<li class = "headings"><a href="index.html">Home</a></li>
<li class = "headings" ><a href="#getstarted">Get Started</a></li>
<li class = "headings" ><a href="#aboutus">About Us</a></li>
<li class = "headings" ><a href="#contact">Contact</a></li>
<li class = "headings" ><a href="#">Sign In</a></li>
</ul>
</div>
<div>
<div class="row">
<div class="column">
<a href="tomato.html">
<div class = "tomato">
<center><img src="Images/Tomatoes.png" alt="Tomato Image" class="TomatoImage"></center>
</br>
</br>
</br>
</br>
<h2>Tomato</h2>
</div>
</div>
</a>
<a href="carrot.html">
<div class="column">
<div class = "carrot">
<center><img src="Images/Carrots.png" alt="Carrots Image" class = "carrotImage"></center>
</br>
</br>
</br>
<h2> Carrot </h2>
</div>
</div>
</a>
<a href="spinach.html">
<div class="column">
<div class = "spinach">
<center><img src="Images/Spinach.png" alt="Spinach Image" class = "SpinachImage"></center>
</br>
</br>
</br>
<h2> Spinach </h2>
</div>
</div>
</a>
</div>
<h1 id = "location">Enter Your Location For Weather Updates!</h1>
<input type="text" id="city" placeholder="Enter Location">
</br>
<button id="submitBtn">Submit</button>
</br>
</br>
<div id="show">
</div>
<footer>
<div id = "contact">
<h1> Contact </h1>
<form action='mailto:costumerservice@Root.com' method='post' enctype="multiparrt/form-data">
<input type="name" placeholder="Your name" required>
<input type="email" placeholder="Your email" required>
<textarea placeholder='Write your message here' required></textarea>
<button>Send Message</button>
</form>
<p class="pFooter"> Copyright © 2021 Root Team </p>
</div>
</footer>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src = "js/app.js"></script>
</body>
</html>