-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn.html
54 lines (50 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Learn!</title>
<script src = "src/js/jquery/jquery.min.js"></script>
<script src="src/js/learnPage.js"></script>
<link rel="stylesheet" href="src/css/learnPage.css">
<link rel="stylesheet" href="src/css/nav_menu.css">
</head>
<body>
<div class="side-container">
<div class="return-container">
<a class="return-button" href="index.html">Return to Home</a>
</div>
<button class="accordion" >Programming Languages</button>
<div class="panel">
<ul class="accordian-dropdown" style="list-style: none;">
<li><a class=" accordian-content active" href="#home">C++</a></li>
<li><a class=" accordian-content" href="#news">Python</a></li>
<li><a class=" accordian-content" href="#contact">JavaScript</a></li>
<li><a class=" accordian-content" href="#about">Prolog</a></li>
</ul>
</div>
<button class="accordion" >Computer Security</button>
<div class="panel">
<ul class="accordian-dropdown" style="list-style: none;">
<li><a class=" accordian-content active" href="#home">Introduction</a></li>
<li><a class=" accordian-content" href="#news">Injection</a></li>
<li><a class=" accordian-content" href="#contact">MIM Attacks</a></li>
<li><a class=" accordian-content" href="#about">Notable History</a></li>
</ul>
</div>
<button class="accordion" >Artificial Intelligence</button>
<div class="panel">
<ul class="accordian-dropdown" style="list-style: none;">
<li><a class=" accordian-content active" href="#home">Types of AI</a></li>
<li><a class=" accordian-content" href="#news">Machine Learning</a></li>
<li><a class=" accordian-content" href="#contact">AI Philosophy</a></li>
<li><a class=" accordian-content" href="#about">History</a></li>
</ul>
</div>
</div>
<div class="middle-container">
<h1 align="center">Hello!</h1>
<p align="center"> This page is where I'm going to try and record some various information in my own words. I think it'll be a good way to keep better track of everything interesting I find, and maybe help me in future classes. </br>
I'm going to try and make these accessible to everyone, with no knowledge of any field necessary. Hopefully I succeed! </br> </br> Click on a section on the left to see more! </p>
</div>
</body>
</html>