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
<!-- Details Information taken from https://www.learnhowtobecome.org -->
<!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">What Does a Web Developer Do?</button>
<div class="content">
<h4>Web Development Basics</h4>
<p>Web Developers are responsible for designing and developing websites and website applications. Using a variety of programming languages and web technologies, web developers manage site functionality, implement application features and integrate security measures.</p>
<h4>Web Development in-depth</h4>
<p>Web developers have expertise in object-oriented-programming, multiplateform development and the building of web applications. They blend creative vision with project management skills to plan, design and build websites and integrated applications. Because of the complex nature of websites , developers traditionally specialize in one of two tracks: <b>(1) Back-end or (2) Front-end development.</b></p>
<p>Front-end developers (also known as client-side development) use a variety of programming languages and frameworks such as HTML, CSS and JavaScript to build the exterior look and features of a site.</p>
<p>Back-end developers use programming languages such as Python and Ruby to design, build and integrate applications from front-end development into the back end—in other words, they make the features on the site operate. Individuals with skills in both front- and back-end development are known as <b>“full-stack developers.”</b></p>
</div>
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
2
3
alert('Details Information from https://www.learnhowtobecome.org/computer-careers/web-development/')
alert('Suggestions will helpfull if you want to give any regarding this information !');
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run