-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
executable file
·82 lines (68 loc) · 3.36 KB
/
schedule.html
File metadata and controls
executable file
·82 lines (68 loc) · 3.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Shreya Lingamallu, Rishi Pathak ">
<meta name="description" content="This calendar provides dates and times which we are planning to meet on. Please check here for updates and notices">
<link href="logowhite.png" rel="icon" type="image/x-icon">
<link href = "style.css" rel = "stylesheet" type = "text/css">
<link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bad+Script&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Dosis&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Schedule - KC Programming Dojo</title>
</head>
<body>
<div class="pagenav" id="pageTopnav">
<div id="logo">
<a href="#">
<a href="index.html">
<img src="logoblack.png" height="35px" width="">
</a>
</a>
</div>
<a href="schedule.html">Schedule</a>
<a href="coding.html">Coding</a>
<a href="aboutus.html">About Us</a>
<a href="signup.html">Sign Up</a>
</div>
<div class = "contain">
<br><br><br>
<center><p id = "sectiontitle">SCHEDULE</p></center>
<div id = about>
Schedule
</div><br><br>
<div id = about2>
Due to the COVID-19 Pandemic, all of our courses have moved online. We will be using Discord in order to communicate. Classes usually are 1-2 hours long. Please check the calendar below regarding the exact times for your course. If you have any questions, please contact us at kcprogrammingdojo@gmail.com.
<br><br><center>
<a href = "https://discord.gg/NmVPZYD"><button class = "home"> Discord Invite </button></a></center>
</div>
<br><br><br><br>
<div id = about>
Calendar
</div><br><br>
<center><iframe src="https://calendar.google.com/calendar/embed?src=kcprogrammingdojo%40gmail.com&ctz=America%2FChicago" style="border: 0" width="50%" height="400px" frameborder="0" scrolling="no"></iframe></center> <br><br><br><br>
<div id = "about"> Other Notes </div><br>
<div id= "about2"> </div> <br><br><br><br><br>
<center><iframe src="https://discordapp.com/widget?id=706549619030622238&theme=dark" width="25%" height="500" allowtransparency="true" frameborder="0"></iframe></center>
<script>
// Initialize and add the map
function initMap() {
// The location of the library
var uluru = {lat: 38.970190, lng: -94.699350};
// The map, centered at the library
var map = new google.maps.Map(
document.getElementById('map'), {zoom: 4, center: uluru});
// The marker, positioned at the library
var marker = new google.maps.Marker({position: uluru, map: map});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&callback=initMap">
</script>
</div></body>
</html>