-
Notifications
You must be signed in to change notification settings - Fork 5
/
learn.html
56 lines (54 loc) · 2.22 KB
/
learn.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
<!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="shortcut icon"
href="https://frontendmasters.com/static-assets/workshops/default-thumbnail.png"
type="image/x-icon"
/>
<title>
Paths to Learning JavaScript, React, and More Skills You Need.
</title>
<link rel="stylesheet" href="styles/nav.css" />
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="styles/learn-page.css" />
<!-- <link rel="stylesheet" href="styles/footer.css" /> -->
<!-- <link rel="stylesheet" href="/styles/nav.css" /> -->
<!-- <link rel="stylesheet" href="/styles/learn-page.css" /> -->
<link rel="stylesheet" href="/styles/footer.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css"
integrity="sha512-10/jx2EXwxxWqCLX/hHth/vu2KY3jCF70dCQB8TSgNjbCVAC/8vai53GfMDrO2Emgwccf2pJqxct9ehpzG+MTw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<!-- -----------------------------Navbar Start----------------------------------------------- -->
<header class="header"></header>
<!-- ---------------------------------Navbar End-------------------------------------------- -->
<!-- Learn Path Component -->
<div class="path-container"></div>
<!-- Learn Path Component End -->
<!-- Elective Component -->
<div class="elective-container"></div>
<!-- Elective Component End -->
<!-- Footer Component -->
<div id="footer"></div>
<!-- Footer Component End-->
</body>
<script src="./scripts/learn-page.js" type="module"></script>
<script src="scripts/data.js"></script>
</html>
<script src="https://kit.fontawesome.com/2ab2a134b6.js" crossorigin="anonymous"></script>