-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
51 lines (40 loc) · 1.66 KB
/
index.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Calendly</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap" rel="stylesheet">
<!-- Calendar -->
<link href='fullcalendar/main.css' rel='stylesheet' />
<script src='fullcalendar/main.js'></script>
<!-- Styles -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/schedule.css">
</head>
<body>
<div class="container">
<section class="description-section">
<hgroup>
<h4 id="scheduler">ACME Sales</h4>
<h2 id="event">Pricing Review</h2>
<div class="icon-text-div">
<img src="icons/clock.svg" alt="clock-icon">
<h4 id="duration">15 min</h4>
</div>
</hgroup>
<p id=description>Our team will meet with you to review pricing options.</p>
</section>
<div class="divider"></div>
<section id="calendar-section" class="body-section">
<h3>Select a Date & Time</h3>
<div id="schedule-div">
<div id="available-times-div"><!-- Available times --></div>
<div id="calendar"></div>
</div>
</section>
</div>
<script src="script/event.js"></script>
<script src="script/index.js"></script>
</body>
</html>