-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_me.html
127 lines (97 loc) · 4.29 KB
/
contact_me.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://www.gstatic.com/firebasejs/10.8.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.8.1/firebase-firestore-compat.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles/main.css" />
<!--Font import-->
<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=Bitter:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>Williams Floral</title>
</head>
<body>
<header>
<div class="headbox">
<a href="javascript:void(0);" class="dropbutton" onclick="hamburger()">
<i class="fa fa-bars" style="color: black; font-size: 2rem; "></i>
</div>
<div id="navdrop">
<a style="order: 1;" id="home" href="index.html">About Us</a>
<a style="order: 2;" id="contact" href="contact_me.html">Inquiries</a>
<a style="order: 3;" id="gallery" href="gallery.html">Portfolio</a>
</div>
</header>
<main>
<div id="smokescreen"></div>
<div id="eventDisplay">
<div class="time" id="time-date">Date Here</div>
<div class="time" id="10">10 AM</div>
<div class="time" id="11">11 AM</div>
<div class="time" id="12">12 PM</div>
<div class="time" id="13">1 PM</div>
<div class="time" id="14">2 PM</div>
<div class="time" id="15">3 PM</div>
<div class="time" id="16">4 PM</div>
<div class="time" id="17">5 PM</div>
<div class="time" id="18">6 PM</div>
<div class="time" id="19">7 PM</div>
</div>
<div id="formbox">
<h1>Request Form</h1>
<form id="appRequest">
<label for="name">Name:</label>
<input type="text" id="name" name="name_input"><br><br>
<label for="email">Email:</label>
<input type="text" id="email" name="email_input"><br><br>
<label for="event">What event is this for?</label>
<input type="text" id="event" name="event_input"><br><br>
<div id="hiddenform" style="display: none;">
<label for="time"></label>
<input type="hidden" id="time" name="time_input"><br><br>
<label for="date"></label>
<input type="hidden" id="date" name="date_input"><br><br>
<label for="month"></label>
<input type="hidden" id="month" name="month_input"><br><br>
<label for="year"></label>
<input type="hidden" id="year" name="year_input"><br><br>
</div>
<input type="submit" value="Submit Request"></input>
</form>
</div>
<h1>My Availability</h1>
<div id="calendarbox">
<h2 id="monthValue"></h2>
<img id="prevMonth" style="max-height: 25px;" src="images/arrowLeft.png" alt="Previous Month" >
<img id="nextMonth" style="max-height: 25px;" src="images/arrow-right.png" alt="Next Month" >
<div class="dayOfWeek">SUN</div>
<div class="dayOfWeek">MON</div>
<div class="dayOfWeek">TUE</div>
<div class="dayOfWeek">WED</div>
<div class="dayOfWeek">THU</div>
<div class="dayOfWeek">FRI</div>
<div class="dayOfWeek">SAT</div>
</div>
</main>
<footer>
<div class="footerbox">
<div class="footerlogos">
<a id="ig" href="https://www.instagram.com/lwilliams_floral/"><img src="images/icons8-instagram-100.png" alt="Visit Our Instagram Page"></a>
<a id="ig" href="https://www.instagram.com/lwilliams_floral/"><img src="images/icons8-email-100(1).png" alt="Reach Me Via Email"></a>
</div>
<ul class="footer_nav">
<li><a href="index.html">About Us</a></li>
<li><a href="contact_me.html">Inquiries</a></li>
<li><a href="gallery.html">Portfolio</a></li>
</ul>
</div>
</div>
</footer>
<script src="scripts/main.js"></script>
<script type="module" src="scripts/calendar.js"></script>
<script src="scripts/form.js"></script>
</body>
</html>