-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
132 lines (122 loc) · 5.43 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
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
128
129
130
131
132
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YHZKZ8TB6S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YHZKZ8TB6S');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Student Resources | Code with Carrie </title>
<link rel="stylesheet" type="text/css" href="styles/main.css">
<script src="https://kit.fontawesome.com/679a59d672.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<div id="backdrop-container"></div>
<div id="page-container">
<div id="page-content">
<div id="top"></div>
<a href="#top" id="top-sticky">
<i class="hand-pointing fa-solid fa-hand-point-up"></i>
Return to top
</a>
<header>
<div id="code-with-carrie">
<img id="cwc-logo" src="images/cwc-logo-white.png" width="300px" />
</div>
<div id="title-bar">
Student Resources
<span class="tooltip-container info-icon">
<i class="fa-solid fa-circle-info"></i>
<span class="tooltip-bottom tooltip-wider">
Questions? Comments? Found a broken link?<br /> Want to suggest a topic for future exercises?<br /> Contact me through <a class="tooltip-link" href="https://www.linkedin.com/in/carolinerjones/" target="_blank">LinkedIn</a>.
</span>
</span>
</div>
<div id="form-container">
<div class="content-block">
<div class="content-primary">
<div>
<p><span class="resource-subheader">
Welcome, students!</span> As you work your way through LaunchCode's WebDev course, use these guides, practice exercises, and example projects to deepen your understanding of course concepts, build your skills, and prepare for graded assignments. You can filter by category, topic, tech, and difficulty to refine the results below.
</p>
<form id="resource-form">
<div class="input-group">
<select id="category-select" class="resource-input"></select>
<select id="topic-select" class="resource-input"></select>
<select id="tech-select" class="resource-input"></select>
<select id="difficulty-select" class="resource-input"></select>
<input id="keyword-input" type="text" class="resource-input" placeholder="Filter by keyword..."/>
<button id="reset-button" type="reset">Reset Filters</button>
</div>
<div class="results-button-row">
<p id="results-count" class="results-count"></p>
<div class="button-group">
<button id="expand-button" type="button" class="muted-button"">Expand All</button>
<button id="collapse-button" type="button" class="muted-button">Collapse All</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<main>
<div id="results-area"><!-- content from script.js --></div>
</main>
<footer>
<div>
© <span id="year"></span> Caroline R. Jones
</div>
<div>
<a href="https://carolista.github.io" target="_blank">
<span class="tooltip-container">
Portfolio
<span class="tooltip">
See projects and resume highlights
</span>
</span>
</a> |
<a href="https://www.youtube.com/@CodeWithCarrie" target="_blank">
<span class="tooltip-container">
YouTube
<span class="tooltip">
Subscribe to my channel
</span>
</span>
</a> |
<a href="https://github.com/Carolista" target="_blank">
<span class="tooltip-container">
GitHub
<span class="tooltip">
Check out my repos and contributions
</span>
</span>
</a> |
<a href="https://www.hackerrank.com/Carolina49a" target="_blank">
<span class="tooltip-container">
HackerRank
<span class="tooltip">
View my badges and certificates
</span>
</span>
</a> |
<a href="https://www.linkedin.com/in/carolinerjones/" target="_blank">
<span class="tooltip-container">
LinkedIn
<span class="tooltip">
Visit my career profile
</span>
</span>
</a>
</div>
</footer>
</div>
</div>
</body>
</html>