-
Notifications
You must be signed in to change notification settings - Fork 0
/
wheretogofromhere.html
82 lines (66 loc) · 2.22 KB
/
wheretogofromhere.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Where to go from here</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Playpen+Sans&family=Roboto&display=swap" rel="stylesheet">
<style>
.next {
border: 2px solid black;
padding: 5px;
margin: 5px;
display: inline;
text-decoration: none;
background-color: beige;
border-radius: 10px;
cursor: pointer;
}
#xfce-de {
width: 50%;
height: 50%;
}
#head2 {
font-family: Arial, Helvetica, sans-serif;
}
#link1 {
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
border: 3px solid black;
padding: 10px;
border-radius: 10px;
border: none;
width: 50x;
height: 25px;
color: aliceblue;
background-color: black;
cursor: pointer;
}
#link1:hover {
background-color: white;
color: black;
transition-delay: 10ms;
}
</style>
</head>
<body>
<div>
<h1 id="head1">Where To Go From Here</h1>
</div>
<div>
<h3 id="head2">
Congratulations on learning the complete basics of Linux! Thanks for following this course. If you get any
problems then you can just look for them on forums and join my discord server for help. After you get
comfortable with Linux command line and everything, you can switch your distribution to Endeavouros, Fedora
or any other distribution you want. Have a great journey!
</h3>
</div>
<div>
<a href="https://discord.gg/2HG8EJwHcr" id="link1">Join My Discord Server</a>
<a href="https://www.youtube.com/@NoobCoder7/featured" id="link1">Subscribe To Me On Youtube</a>
</div>
</body>
</html>