html
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
<!--
Resources from
https://null-byte.wonderhowto.com/how-to/essential-skills-becoming-master-hacker-0154509/
-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="marquee">
<p>😁 Follow <a href="https://www.sololearn.com/Profile/7920723/?ref=app">me</a> and <a href="https://www.sololearn.com/Profile/13348676/?ref=app">Varinder Singh</a> to get new usefulllll updates ! 😁</p>
</div>
<button class="collapsible collapsible1">Introduction</button>
<div class="content">
<p>As the hacker is among the most skilled information technology disciplines, it requires a wide knowledge of IT technologies and techniques.</p>
<p>To truly be a great hacker, one must master many skills. Don't be discouraged if you don't have all the skills I list here, but rather use this list as a starting ground for what you need to study and master in the near future.</p>
<p>This is my overview list of required skills to enter the pantheon of this elite IT profession. I've broken the skills into three categories to help you go from one rung to the other more easily—fundamental, intermediate, and intangible skills.</p>
</div>
<button class="collapsible collapsible1">The Fundamental Skills</button>
<div class="content">
Enter to Rename, Shift+Enter to Preview
css
css
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
/* Created by 🇦🇯 and designed by Varinder Singh*/
body {
font-family:Times New Roman;
font-size:15pt;
background-color:lightblue;
}
.marquee {
color: red;
padding: 1px;
font-size: 18px;
font-weight: bold;
text-align: center;
margin-bottom: 10px;
overflow:auto;
overflow-style:marquee,panner;
}
.marquee p {
box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}
.goog-logo-link {
display:none !important;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run