-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
67 lines (64 loc) · 5.03 KB
/
page2.html
File metadata and controls
67 lines (64 loc) · 5.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Cache-Control" content=no-store>
<meta http-equiv="Expires" content="0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guided Projects</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="hello.css?v=123">
<script src="index.js"></script>
</head>
<body>
<div style="text-align:center; margin-bottom: 20px;">
<h1 style="text-align: center;"><b>Courses - Page 2</b></h1>
</div>
<button id="reset" class="rust">Reset Saved Code</button>
<div class="container">
<div class="box text-box">
<h1 style="text-align: center;">Linux</h1>
<h2 style="text-align: center;">
<b>
<button class="cpp" style="width: fit-content; height: fit-content;" onclick='document.location="./learnlinux/hello.html?lesson=lesson1.json"'>Learn Linux</button>
</b>
</h2>
<h4>Description: Learn the most popular os for development!</h4>
<br><br>
<h1 style="text-align: center;">Git</h1>
<h2 style="text-align: center;">
<b>
<button class="rust" style="width: fit-content; height: fit-content;" onclick='document.location="./learngit/hello.html"'>Learn Git</button>
</b>
</h2>
<h4><strong><i>Node: You MUST have completed the Linux course (above) before starting Git</i></strong> Description: Git is a version control system used to track changes in your code, collaborate with others, and manage project history. It lets you experiment without breaking everything, and recover when you inevitably do.</h4>
<br><br>
<h1 style="text-align: center;">Web</h1>
<br><br>
<h2 style="text-align: center;"><b><button class="cpp" style="width: fit-content; height: fit-content;" onclick='document.location="./web/web.html"'>Go to Web</button></b></h2>
<br><br>
<h4>Description: <strong><i>Note: You MUST have completed the TypeScript course before starting web.</i></strong> Learn the languages of the web, HTML and CSS. Honestly, they arn't programming languages, they are markup languages, but you will also learn how to communicate with HTML and CSS in TypeScript.<br></h4>
</div>
<div class="box code-box">
<h1 style="text-align: center;">Go</h1>
<br><br>
<h2 style="text-align: center;"><b><button class="cpp" style="width: fit-content; height: fit-content;" onclick='document.location="./go/go.html"'>Go to Go</button></b></h2>
<br><br>
<h4>Description: Learn Go, a language all about concurrency, and fast compilation. It is intended for things like web servers (hence REALLY good concurrency), cloud infrastructure, and microservices. Its mascot is also a cute gopher.<br></h4>
<h1 style="text-align: center;">Haskell</h1>
<h2 style="text-align: center;"><b><button class="cs" style="width: fit-content; height: fit-content;" onclick='document.location="./haskell/haskell.html"'>Go to Haskell</button></b></h2>
<br><br>
<h4>Description: Haskell is a purely functional programming language (this means that you dont modify variables and everything is basically a function (AKA it's weird)). It is typically used in applications for banks, and data intensive tasks. It's kinda like describing <i>what you want</i> and it figures out how to do it. You will be working at <i>Pear</i>, on their newest device, the the pPhone 18<br></h4>
<h1 style="text-align: center;">Fortran</h1>
<h2 style="text-align: center;"><b><button class="cs" style="width: fit-content; height: fit-content;" onclick='document.location="./fortran/fortran.html"'>Go to Fortran</button></b></h2>
<br><br>
<h4>Description: Fortran is a classic programming language still used for high-performance scientific computing, like weather prediction models and numerical simulations. It’s old, fast, and a little strange.</h4>
<h1 style="text-align: center;">Zig</h1>
<h2 style="text-align: center;"><b><button class="rust" style="width: fit-content; height: fit-content;" onclick='document.location="./zig/zig.html"'>Go to Zig</button></b></h2>
<br><br>
<h4>Description: Zig is a new opinonated language with a syntax similar to rust. Its whole "thing" is no implicit functions you don't know about: No operator overloading, standered library doesnt use manual memory managment, etc.</h4>
</div>
</div>
<h2 style="text-align: center;"><b><button class="qc" style="width: fit-content; height: fit-content;" onclick='document.location="page3.html"'>To Page 3</button></b></h2>
<h2 style="text-align: center;"><b><button class="qc" style="width: fit-content; height: fit-content;" onclick='document.location="index.html"'>Back to Page 1</button></b></h2>
</body>