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
http://techgenix.com/full-stack-developer/
https://medium.com/coderbyte/a-guide-to-becoming-a-full-stack-developer-in-2017-5c3c08a1600c
https://skillcrush.com/2019/08/08/how-to-become-a-full-stack-developer/#learn
-->
<!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 me and <a href="https://www.sololearn.com/Profile/13348676/?ref=app">Varinder Singh</a> to get new usefull updates ! 😁</p>
</div>
<button class="collapsible collapsible1">Who is a full stack developer (FSD)?</button>
<div class="content">
<p>A programmer skilled in coding both the frontend and the backend parts of a web application is called a full stack web developer.</p>
<p><b>The frontend:</b> This is the part of the web application that the user sees and uses.</p>
<p><b>The backend:</b> These are parts of the application that function behind the scenes and execute the commands issued by the user. This usually includes:</p>
<ul>
<li>logical processes</li>
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
alert ("Designed by Varinder Singh. Thanks !");
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run