-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 3.96 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 3.96 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
68
69
70
71
72
73
74
75
76
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="css/normalize.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&family=Inter&family=Montserrat:wght@600&family=Open+Sans:ital,wght@1,700&family=Oswald&display=swap" rel="stylesheet"> <script src="js/script.js" defer></script>
<title>Linux - Home</title>
</head>
<body>
<div id="toggleIcon" onclick="menuToggle()"></div>
<div id="menu-overlay">
<nav>
<ul class="menu-list">
<li><a href="index.html" class="menu">Home Page</a></li>
<li><a href="htmls/lincommands.html" class="menu">Linux Commands</a></li>
<li><a href="htmls/userfriendly.html" class="menu">Linux Desktop vs other OS</a></li>
<li><a href="htmls/whatislinux.html" class="menu">What is Linux?</a></li>
<li><a href="htmls/advancedlinux.html" class="menu">Advanced Linux Features</a></li>
<li><a href="htmls/form.html" class="menu">Sign-Up form for Linux Course</a></li>
</ul>
</nav>
</div>
<a href="index.html"><img src="images/tux.svg" alt="Tux the penguin" class="tux" width="100" height="100"></a>
<div class="container">
<div class="center">
<p class="text">lee@localhost:~$</p><span class="lintext"> </span>
</div>
</div>
<div class = "linuxtitlediv">
<p class = "linuxtitle">What is Linux?</p>
</div>
<div class="center">
<p class= "whatlinux">
Linux is a free and open-source operating system.<br>
Meaning that the source code for Linux is freely accessible by anyone and can be modified
for any uses.<br>
Linux is also multi-purpose, as by default, a Linux configuration only allows for shell/console
access.<br>
Adding packages like Apache or X Windows Systems, makes it more tailored for Web Server or
Desktop user respectively.
</p>
</div>
<div class = "linuxtitlediv">
<p class = "linuxtitle">What is it used for?</p>
</div>
<div class="center">
<p class= "whatlinux">
Linux is usually used for servers and embedded devices, for example <a class="aclass" href="https://openwrt.org/">Routers</a>, <a class="aclass" href="https://gist.github.com/franga2000/1be2aa18cb3409e57af149883c06e34a">Home Security cameras</a> <br>
and most <a class ="aclass" href="https://w3techs.com/technologies/details/os-linux">Web Servers</a> across the internet.
It is usually used, because of the lightweight nature of Linux, and the source code is able to be <br>
customised to suit needs, or to check if there is no malicious code.
</p>
</div>
<div class="center">
<p class="linuxtitle">Sign-Up for my Linux course now!</p>
</div>
<div class="center">
<p class="whatlinux">
Are you interested in learning what makes Linux tick? What powers most servers on the internet?
How does it work? Can I learn more? You can by signing up for my course and I will teach you the
fundamentals of Linux and more. Click the button below to sign-up now!
</p>
</div>
<div class="center">
<a href="htmls/form.html" class="button">Sign-Up now!</a>
</div>
<div class = "footercontainer">
<footer> </footer>
</div>
</html>