-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
41 lines (31 loc) · 1.2 KB
/
home.html
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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FloraFy</title>
<link href="styles.css" rel="stylesheet"/>
<script src="home.js"></script>
</head>
<body>
<div id="homeSidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="profile.html">Profile</a>
<a href="map.html">Map</a>
<a href="about.html">About</a>
<a href="terms.html">Our Terms</a>
</div>
<div id="main">
<button class="openbtn" style="font-family: Agbalumo" onclick="openNav()">☰ Menu</button>
</div>
<h1 id="welcome" class="welcome">Welcome to FloraFy!</h1>
<p style=" color: #636b59 !important; text-shadow: 2px 2px 4px white!important; ">Glorify the beautify of nature...</p>
<div id="dropContainer" class="upload-container">
<div id="dropZone" class="upload">
<div class="uploadstext">
<span>Drag & Upload your flower here!</span>
</div>
<input type="file" id="fileInput" class="file-input">
</div>
</div>
</body>
</html>