-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (100 loc) · 4.72 KB
/
index.html
File metadata and controls
101 lines (100 loc) · 4.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<title>June Cohort</title>
</head>
<body>
<header>
<h1>June 2022 Web Fundamentals Cohort Lectures, Notes, Links</h1>
</header>
<main>
<h2 class="heading" id="showLectures">Lectures</h2>
<div class="section" id="hideLectures">
<div class="row">
<div class="column">
<h2 id='showWeek1'>Week 1 Lectures</h2>
<div id="hideWeek1">
<a href="./lectures/week1/session1/index.html">Session 1 Lecture</a>
<a href="./lectures/week1/session2/index.html">Session 2 Lecture</a>
</div>
</div>
<div class="column">
<h2 id='showWeek2'>Week 2 Lectures</h2>
<div id="hideWeek2">
<a href="./lectures/week2/session1/index.html">Session 1 Lecture</a>
<a href="./lectures/week2/session2/index.html">Session 2 Lecture</a>
</div>
</div>
</div>
<div class="row">
<div class="column">
<h2 id='showWeek3'>Week 3 Lectures</h2>
<div id="hideWeek3">
<a href="./lectures/week3/session1/index.html">Session 1 Lecture</a>
<a href="./lectures/week3/session2/index.html">Session 2 Lecture</a>
</div>
</div>
<div class="column">
<h2 id='showWeek4'>Week 4 Lectures</h2>
<div id="hideWeek4">
<a href="./lectures/week4/session1/index.html">Session 1 Lecture</a>
<a href="./lectures/week4/session2/index.html">Session 2 Lecture</a>
</div>
</div>
</div>
</div>
<h2 class="heading" id="showNotes">Notes</h2>
<div class="section" id="hideNotes">
<div class="row">
<div class="column">
<h2 id="showMelissa">Instructor Melissa's Notes</h2>
<div id="hideMelissa">
<a href="https://hackmd.io/8DLGlG7DTha4ewTgW7bKPQ" target="_blank">HackMd Notes</a>
<a href="https://github.com/WF-InstructorMelissa/June22-WebFun" target="_blank">Class Repository</a>
<a href="https://github.com/WF-InstructorMelissa" target="_blank">Web Fundamentals Git Organization</a>
</div>
</div>
<div class="column">
<h2 id="showDojoHall">Dojo Hall Links</h2>
<div id="hideDojoHall">
<a href="https://sites.google.com/codingdojo.com/pt-bulletin-board/dojo-hall?authuser=0" target="_blank">Dojo Hall</a>
</div>
</div>
</div>
<div class="row">
<div class="column">
<h2 id="showShortCuts">VS Code Shortcuts</h2>
<div id="hideShortCuts">
<a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf" target="_blank">Windows VS Code</a>
<a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf" target="_blank">Mac VS Code</a>
</div>
</div>
<div class="column">
<h2 id="showLinks">Extra Links</h2>
<div id="hideLinks">
<a href="https://www.transparenttextures.com/" target="_blank">Transparent Textures</a>
</div>
</div>
</div>
</div>
<h2 class="heading" id="showPlayList">Videos</h2>
<div class="section" id="hidePlayList">
<div class="row">
<div class="column">
<h2 id="showVideo">YouTube Playlists</h2>
<div id="hideVideo">
<a href="https://youtube.com/playlist?list=PLdBks2SVjpATUg7g-mNXvj_bCZuuO3jS_" target="_blank">Cohort Playlist</a>
<a href="https://www.youtube.com/playlist?list=PLdBks2SVjpARx3ogVp1L-JQQrMxmZ0VdS" target="_blank">Terminal, Git, & Github Playlist</a>
</div>
</div>
</div>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./js/scripts.js"></script>
</body>
</html>