-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathresource.html
103 lines (93 loc) · 3.03 KB
/
resource.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
<!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">
<meta name="google-signin-client_id" content="215861507846-gia515jbhncolvmb0nmifmuunhdo2rj4.apps.googleusercontent.com">
<link rel="stylesheet" href="css/res.css" />
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/index.css" />
<title>Resources</title>
</head>
<body>
<div class="main">
<nav class="navigation-bar">
<h1 class="logo" src="logo.png">Techtronics</h1>
<div class="other">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="labs.html"> Labs </a>
<a href="project.html"> Projects </a>
<a class="active" href="resource.html">Resources</a>
</div>
<i class="fa fa-bars"></i>
</nav>
<!-- <section class="section-3">
<div class="g-signin2" data-onsuccess="onSignIn"></div>
</section> -->
<p class="opening-text">Here are some of the books and YouTube playlists relevant for our course:</p>
<div class="container">
<div class="cards">
<h3>Books</h3>
<ul>
<li>Coming soon...</li>
</ul>
</div>
<div class="cards">
<h3>Links</h3>
<ul>
<li><a href="https://www.tutorialspoint.com/index.htm">Tutorials Point</a></li>
</ul>
</div>
<div class="cards">
<h3>Playlists</h3>
<ul>
<li><a href="https://youtube.com/playlist?list=PLBlnK6fEyqRiw-GZRqfnlVIBz9dxrqHJS">Analog Electronics (Neso)</a></li>
<li><a href="https://youtube.com/playlist?list=PLBlnK6fEyqRhG6s3jYIU48CqsT5cyiDTO">Signals and Systems (Neso)</a></li>
</ul>
</div>
</div>
</div>
<footer>
<div class=Title>
<h2>Techtronics</h2>
</div>
<div class="icon">
<div>
<a href="index.html" >
<img src="assets/Icons/Home.png" alt="HOME Icon">
</a>
</div>
<div>
<a href="about.html" >
<img src="assets/Icons/About.png" alt="About Icon"></a>
</div>
<div>
<a href="labs.html" >
<img src="assets/Icons/Lab.png" alt="Lab Icon">
</a>
</div>
<div>
<a href="resource.html">
<img src="assets/Icons/Resources.png" alt="Resource Icon">
</a>
</div>
<div>
<a href="project.html">
<img src="assets/Icons/Projects.png" alt="Project Icon">
</a>
</div>
</div>
<ul class="menu_type">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="labs.html">Lab</a></li>
<li><a href="resource.html">Resource</a></li>
<li><a href="project.html">Project</a></li>
</ul>
<p>© 2021 Techtronics | All Rights Reserved</p>
</footer>
<script src="https://apis.google.com/js/platform.js" async defer></script>
</body>
</html>