A Complete Overview On: Web-Development
A Complete Overview On: Web-Development
A Complete Overview On: Web-Development
ON: WEB-DEVELOPMENT
AYUSH MAURYAVANSHI
First Print
This book has been published with all reasonable efforts taken to make the material error-free after
the consent of the author. No part of this book shall be used, reproduced in any manner whatsoever
without written permission from the author, except in the case of brief quotations embodied in
critical articles and reviews.
The Author of this book is solely responsible and liable for its content including but not limited to
the views, representations, descriptions, statements, information, opinions and references
[“Content”]. The Content of this book shall not constitute or be construed or deemed to reflect the
opinion or expression of the Publisher or Editor.
This Book Is Dedicated To My Parents
Contents
About Book:
HTML
JavaScript
CSS
JQuerry
Everything occurs whenever you check out and complete a deal since the
backend programmer built it so. Developers develop the structure that
allows all of those simple (almost all of the time) functionalities to be
implemented.
2
Ayush Mauryavanshi
The following are some of the most common operating systems used by
backend developers:
JAVA
PHP
MYSQL
C#
Mongo DB
3
2. Markup Language
# HTML
Every block of markup language (falling between both the "<" & ">"
words) is considered as an element; however, some people are referring
to it as tags. Certain items occur in pairs, indicating when a graphic
feature should start & when it should stop.
Tags: HTML tags are secret words on a website page that specify how
the material should be formatted and displayed by your browsers. An
opening and a closing portion are required on many of these tags. For
e.g. the starting tag is <Hello>, & the ending tag is </Hello>.
Tags Utilization
(<html>…</html>) It carries complete HTML content
(<head>…</head>) An HTML statement's header or preface.
(<body>…</body>) Includes rest of the HTML text's data
(<title>…</title>) Includes the document's title.
(<H1>…</H1>) first-level heading with big font size
(<H2>…</H2>) Second level heading
(<H3>…</H3>) Third level heading
(<H4>…</H4 >) Forth level heading
(<H5>…</H5>) Fifth level heading
(<H6>…</H6>) Sixth level heading
(<BR>) Break in the Lines This tag will result in
an empty line being displayed.
6
Ayush Mauryavanshi
Example 1:-
<Html>
<Body>
7
A Complete Overview On: Web-Development
<h1>Hello World</h1>
</Body>
</Html>
OUTPUT:-
Hello World
Thank you for visiting here.
Example 2:-
<html>
<body>
<h1>Simple Form</h1>
<form action="/action_page.php">
<label for="fname">First
Name:</label><br>
8
Ayush Mauryavanshi
<label for="mname">Middle
Name:</label><br>
<label for="lname">Last
Name:</label><br>
</form>
</body>
</html>
Output:-
First Name:
Yash
Middle Name:
Pratap
Last Name:
Singh
Submit
9
A Complete Overview On: Web-Development
# Applications of HTML
2. Internet Navigation:
It is among the most prominent essential & innovative usage of
HTML. The idea of Hypertext is used to enable this exploration.
It's essentially a piece of text that links to specific websites or
content, & whenever people click on it, the user is taken to the
related text or webpage. To integrate a hyperlink inside a web
page, HTML is commonly utilized. Customers can freely travel
among domains that are hosted on multiple hosts & between
WebPages.
10
Ayush Mauryavanshi
# What is an XHTML?
XHTML is a markup language written in XML, or to put it another
way, XHTML is an XML program. It is a composite technique that
integrates the capabilities of HTML & XML to create an optimized
and effective system. You've probably come through or hear of the
word XHTML in the context of website innovation. There are
various features currently available, each with its significance and
application. In the same way, it plays a distinctive function in front
end and website development. We shall attempt to comprehend
XHTML in all of its essential components in this post.
11
A Complete Overview On: Web-Development
Advantages of SVG:
Could utilize any script editor to create and modify SVG
images.
Graphics in SVG format can be found, sorted,
programmed, & reduced.
SVG pictures can be scaled to any size.
SVG pictures can be reproduced in great clarity at any size.
Can zoom images in SVG in and out.
When SVG graphics are magnified or scaled, they do not
compromise with Quality
SVG is a free and open format.
SVG documents are made up entirely of XML.
SVG used in HTML:-
<Html>
<Body>
</svg>
</Body>
</Html>
OUTPUT:
SVG
<!DOCTYPE html>
<html>
<body>
13
A Complete Overview On: Web-Development
</g>
</svg>
</body>
</html>
Output:
………………………………….
---------------------------------------
******
14
Ayush Mauryavanshi
3. SEO
# SEO:
The Phrase SEO "search engine optimization" refers to developing
a website for search engines. In simplistic words, it relates to the
method of upgrading your website to boost its exposure when
consumers utilize Google, Bing, & alternative search engines to
look for goods or offerings linked to your organization. The higher
your webpage's exposure in search engines, the more probably you
are to grab interest & acquire new & current clients to your
company.
Keyword optimized
Compiling content
Crawl accessibility
15
A Complete Overview On: Web-Development
Content-blogs-digital marketing.html
Content_blogs_digital marketing.html
<Meta name="keywords"
<Meta name="description"
“You can add the above written code in the head section of the
webpage of your website.”
16
Ayush Mauryavanshi
# SEO-Optimized Anchor
All of your textual content should have meaningful anchor text. In
ranking WebPages, many search engines examine the anchor text
of arriving hyperlinks. An illustration of an anchor is as follows:
</a>
A graphic has taken the role of Anchor Text in this situation. So, if
you're utilizing a graphic instead of anchor text, double-check that
you've used the alt tag correctly. An image's alt tag must contain
keywords that are relevant to the visual.
# W3C Compliance
The below guidelines are the rules of W3C Compliance should be
followed while creating a website.
17
A Complete Overview On: Web-Development
18
Ayush Mauryavanshi
# SEO Mobile:
Cell phone SEO is the process of optimizing a website's visibility
while also ensuring that it can be seen flawlessly on mobile
devices & pads. Because of the growing use of smart phones,
publishers should pay close attention to their Smartphone SEO
strategy. After all, more than half of all online consumers now say
they utilize their mobile phones to access websites daily.
Separate URLs ✘ ✘
19
A Complete Overview On: Web-Development
20
Ayush Mauryavanshi
II. Indexing: Crawling and indexing are not the same things.
These two behaviors aren't mutually exclusive, even though
they are interrelated.
However, once you've taken action and completed the job, you can
focus on the remaining SEO elements.
******
22
4. Development Tools
ng-click="functionExpression()"
5+7
x+y
user.name
items[index]
Examples:
I. Simple Addition:
24
Ayush Mauryavanshi
<span>
8+9={{8+9}}
</span>
Output: 8 + 9= 17
<html lang="en">
<scriptsrc="https://ajax.googleapis.com/ajax/libs/angularjs/1.6
.9/angular.min.js"> </script>
<body>
<form>
</form>
</div>
<script>
app.controller('formCtrl', function($scope)
{
$scope.firstname = "Alex";
25
A Complete Overview On: Web-Development
});
</script>
</body>
</html>
Output:
2.Sass:
o Sass is used in several frameworks, including
Compass, Bourbon, Susy, and others. It will assist
in developing your function while also providing
some built-in options.
o Sass supports multiple inheritances.
o Nesting, variables, loops, arguments, and other
aspects are included.
$primary-color: #333
body
26
Ayush Mauryavanshi
color: $primary-color
li
display: inline-block
a
display: block
padding: 6px 12px
text-decoration: none
3.JQuery:
o It works with Chrome, Edge, Firefox, IE, Safari,
Android, & iOS, among other platforms.
o JQuery requires a fundamental API that simplifies
activities such as Ajax & animation. This API is
compatible with various browsers.
o It complies with CSS3.
Example of JQuery :
<!DOCTYPE html>
<html>
<head>
27
A Complete Overview On: Web-Development
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>
Output:
Click me away!
Click me too!
28
Ayush Mauryavanshi
4.Bootstrap:
o Sass variables & mixing are available in Bootstrap.
o It has a responsive grid system.
o It comes with a lot of pre-assembled parts.
<html lang="en">
<Head><meta http-equiv="Content-Type"
content="text/html; charset=windows- 1252">
<Title>Any title</title>
</head>
<Body>
//write code
</Body>
</html>
5.Sketch:
✓ Sketch allows customers to view your designs in
user flow diagrams, convert screenshots into
29
A Complete Overview On: Web-Development
*Notes:
*******
30
Ayush Mauryavanshi
5. CSS
# Introduction
1. CSS inline
We're going to give it the color property & add the number to blue,
which provides us with the following:
Adding CSS utilizing <style> tag inside the <head> tag of the
HTML code, then, it is known as internal linking.
<head>
<style>
31
A Complete Overview On: Web-Development
h1{color: blue;}
</style>
</head>
3. External CSS
<head>
</head>
We used the reference tag in the code above to include the URL to
the style.css files. To make it easier to maintain, we write all of our
CSS in a separate stylesheet named style.css.
h1 {
color: blue;
# CSS Selectors
CSS (Cascading Style Sheets) is a design language for styling
HTML elements. You must first pick aspects before you can style
them. You've recently explored how this functions, but let's get a
little deeper into CSS selectors and examine three distinct methods
for selecting HTML components.
32
Ayush Mauryavanshi
h1 {
color: blue;
.special {
color: blue;
I could also use a comma (,) to separate these and turn them into a
selector list.
h1, .special {
color: blue;
h1,
.special {
color: blue;
33
A Complete Overview On: Web-Development
h1 { }
ILLUSTRATION: h1 {
font-size: 10px;
p{
color: pink;
.box { }
ILLUSTRATION: .container {
margin: 20px;
&, an ID:
#unique { }
ILLUSTRATION: #para1 {
color: yellow;
font-size: 16px;
34
Ayush Mauryavanshi
2. Attribute selectors:
b[title] { }
Or,
a[href="https://Helloworld.com"] { }
35
A Complete Overview On: Web-Development
# CSS Layout
CSS page layout approaches enable us to determine the location of
items on a website page concerning their initial place in normal
style flow, other elements nearby, their parent container, or the
main viewport/window.
o Normal flow
o The display property
o Flex box
o Grid
o Floats
o Positioning
o Normal flow:
When you don't customize the layout of your HTML WebPages,
the web application defaults to normal flow, For example:-
<ul>
</ul>
<p>The end!</p>
36
Ayush Mauryavanshi
Output:
I love my Rabbit
The end!
o Flex Box:
The Flexible Box Layout Module, often known as Flex box, was
created to simplify things in one dimension — either as a row or as
a column. To utilize Flex box, add display: flex to the parent
element of the components you want to arrange, and all of its
immediate children become flex items. A simple analogy
demonstrates this.
.wrapper {
37
A Complete Overview On: Web-Development
display: flex;
<div class="wrapper">
<div class="box1">Red</div>
<div class="box2">Yellow</div>
<div class="box3">Green</div>
</div>
.wrapper {
display: flex;
flex: 1;
<div class="wrapper">
<div class="box1">Red</div>
<div class="box2">Yellow</div>
38
Ayush Mauryavanshi
<div class="box3">Green</div>
</div>
o Grid Layout:
Can enable grid layout by specifying a presentation value —
exhibit: grid. With a box & certain child elements, the following
example is identical to the flex example. In addition to utilizing
display: grid, we're also using the grid-template-rows & grid-
template-columns parameters to define specific rows or columns
track on the parent. We've set up three columns of 1fr each and
two rows of 100px each. I don't need to apply any rules to the child
elements because they are automatically inserted into the cells
established by our grid.
.wrapper {
display: grid;
grid-gap: 10px; }
39
A Complete Overview On: Web-Development
<div class="wrapper">
<div class="box1">RED</div>
<div class="box2">BLUE</div>
<div class="box3">GREEN</div>
<div class="box4">ORANGE</div>
<div class="box5">WHITE</div>
<div class="box6">PINK</div>
</div>
o Floats:
The functionality of an entity that is floated and the block-level
components that follow it in normal flow is altered. The attribute is
shifted to the left or right, out of the typical flow, and the adjoining
text floats.
40
Ayush Mauryavanshi
Example:
<div class="box">Flowers</div>
.box {
float: left;
width: 150px;
height: 150px;
margin-right: 30px; }
41
A Complete Overview On: Web-Development
Flowers
Flower is a modified shoot with a condensed axis called
thalamus and appendages called floral organs.
Stamens(microsporophylls) and carpels (megasporophylls) represent
the essential parts of a flower.Typically, the flower is condensed branch
in which internodes have become condensed, bringing the nodes close to
one another. The leaves are modified to form floral whorls that directly
or indirectly participate in the reproduction process. Flowers differ
considerably in size, shape, color, and arrangement of their parts, yet
most of them bear a common structural plan.
o Positioning:
Positioning enables us to shift a component from where would
typically put it in the workflow to a different place. Positioning is
more about maintaining & fine-tuning the location of various
objects on the web page than on building primary web page
layouts.
Static Positioning
Relative Positioning
Absolute Positioning
Fixed Positioning
Sticky Positioning
42
Ayush Mauryavanshi
body {
width: 500px;
margin: 0 auto;
p{
background-color: rgb(207,232,220);
padding: 10px;
margin: 10px;
border-radius: 5px;
Example of positioning..
Example of positioning…
43
A Complete Overview On: Web-Development
Example:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: Yellow;
div:hover {
width: 300px;
44
Ayush Mauryavanshi
</style>
</head>
<body>
<div></div>
</body>
</html>
45
A Complete Overview On: Web-Development
transition
transition-delay
transition-duration
transition-property
transition-timing-function
CSS Animations:
.element {
@keyframes pulse {
0% {
background-color: #001F3F;
46
Ayush Mauryavanshi
100% {
background-color: #FF4136;
Example:
<!DOCTYPE html>
<html>
<head>
<style>
47
A Complete Overview On: Web-Development
div {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 4s;
@keyframes example {
to {background-color: yellow;}
</style>
</head>
<body>
<p>
</body>
</html>
48
Ayush Mauryavanshi
1.SCSS Compiler:
Beautify Tools' SCSS compiler website application software is an
automatic code generator for the current CSS workflow. It is an
effective internet CSS tool for you if you want to use a terrific tool
that can help you develop & publish a site quickly. The program
converts raw SCSS to CSS depends on the design & media and, in
general, options, as well as allowing code minification & merging
several files.
2.Keyframnes.app:
This Keyframes.app is an excellent application that shows you how
your project must be accomplished in a timeline format. As a
result, you can readily observe how your graphics look, whether
they repeat, & which portions of the series are the most important.
You may simply change components on the webpage using this
help indicate and the chance to monitor the effects right in front of
you.
49
A Complete Overview On: Web-Development
3.Scout app:
Scout App is an excellent tool to use if you're a designer seeking
to begin with vibrant CSS so you can operate in XP, Mac, & Linux
platforms. Working with dynamic CSS is easy when using a
Sass/Compass Graphical user interface. This application allows
you to save all in one place, including CSS files, themes, and a
wide range of products. There will be no need to waste hours
studying terminal commands. So, it is the best tool for designing &
styling process.
4.Sierra Library:
Sierra Library is a fully accessible, lightweight, & customizable
utility that claims to be the smallest SCSS library. It is simple to
set up & install. You can also change the styles, borders,
scrollbars, & colors in the library's style options. You can make
your own specially made file as well. Banners, Icons, Typefaces,
Forms, Loaders, Alerts, Pagination, Lists, Tablets, Labels, &
Utility are just a few of the items you can manage using the
application.
5.PostCSS:
PostCSS is the tool to use if you want to interact with a piece of
information that enables you to translate CSS into JavaScript. By
utilizing Should I Use variables to add vendor prefixes to CSS
rules, you can improve code readability. Its Autoprefixer analyses
the traffic of the internet browser & applies prefixes based on that
information.
******
50
Ayush Mauryavanshi
6. Java Script
#JavaScript language
Introduction:
Merits of JavaScript:
o Less server interaction
o Immediate feedback to the visitors
o Increased interactivity
o Richer interfaces
Demerits of JavaScript:
o Client-side reading and writing of documents is not
possible with JavaScript.
o Multi-threading and multiprocessor support are not
available in JavaScript.
o Since there is no networking capability in
JavaScript, it cannot be utilized for communication
networks.
Operators:
51
A Complete Overview On: Web-Development
Example:
<html>
<body>
<h2>JavaScript + Operators</h2>
<p id="demo"></p>
<script>
let a = 6;
let b = 6;
let c= a + b;
52
Ayush Mauryavanshi
document.getElementById("demo").innerHTML = c;
</script>
</body>
</html>
Output:
JavaScript + Operators
a = 6, b = 6, evaluate c= a + b, and display c:
12
*You can use all the above given operators in a similar manner.
Conditional Statements:
JavaScript If Else condition evaluates the expression, If the
expression is true, execute the true loop otherwise execute else
block.
If- Statement:
Syntax: if (condition) {
Example:
53
A Complete Overview On: Web-Development
if (10 > 5) {
outcome;
Output: "hello"
If-else Statement:
Syntax: if (condition) {
} else {
Example:
var x = 5, y = 10;
if(x>y) {
} else {
54
Ayush Mauryavanshi
If-else-if statement:
Syntax: if (condition1) {
} else if (condition2) {
} else {
Example:
if ( 15 < 10) {
} else {
document.getElementById("demo").innerHTML =
greeting;
Output:
Good day !
55
A Complete Overview On: Web-Development
case a:
// code to be executed
break;
case b:
// code to be executed
break;
default:
// code to be executed
Example:
<script>
let day;
case 0:
day = "Sunday";
break;
case 1:
day = "Monday";
56
Ayush Mauryavanshi
break;
case 2:
day = "Tuesday";
break;
case 3:
day = "Wednesday";
break;
case 4:
day = "Thursday";
break;
case 5:
day = "Friday";
break;
case 6:
day = "Saturday";
document.getElementById("demo").innerHTML =
"Today is " + day;
</script>
57
A Complete Overview On: Web-Development
// code to be execute }
Example:
<body>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = text;
</script>
</body>
Output:
The number is 1
The number is 2
58
Ayush Mauryavanshi
Example:
<body>
<p id="demo"></p>
<script>
let i = 0;
while (i < 6) {
i++;
document.getElementById("demo").innerHTML = text;
</script>
</body>
59
A Complete Overview On: Web-Development
Output:
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
Syntax:
do {
while (condition);
Example:
<body>
<p id="demo"></p>
<script>
let i = 0;
do {
i++;
document.getElementById("demo").innerHTML = text;
</script>
</body>
Output:
The number is 1
The number is 2
61
A Complete Overview On: Web-Development
Syntax:
try
catch(ex)
finally{
# Inheritance
In object-oriented programming, inheritance is a crucial notion.
Techniques from the base class are imported into the derived class
under traditional inheritance.
62
Ayush Mauryavanshi
};
ads: false
};
console.log(proUser.showAccess); // "true"
Bike.prototype.dialogue = function () {
console.log(
63
A Complete Overview On: Web-Development
"I am a " +
this.color +
" "+
this.make +
this.speed +
);
};
console.log(Pulsar.dialogue());
console.log(HeroHonda.dialogue());
console.log(KTM.dialogue());
function Client(data) {
that.name = data.name;
return that;
function Client(data) {
64
Ayush Mauryavanshi
that.sayHello = function () {
};
return that;
console.log(myClient.sayHello());
# Prototypes
JavaScript is an interactive scripting language. As seen here, you
can add additional attributes to an object at any moment.
<body>
<h1>Demo </h1>
<script>
function Student() {
this.name = 'Riya';
this.gender = 'F';
studObj1.age = 20;
65
A Complete Overview On: Web-Development
alert(studObj1.age);
alert(studObj2.age);
</script>
</body>
Function Prototype
Prototype in JavaScript
Each object developed with literal syntax or function Object () {
[native code] } syntax with the new keyword has a __proto__ field
that refers to the prototype object of the function that generated it.
Function Prototype
Object 1
Object 2
66
Ayush Mauryavanshi
Prototype in JavaScript
Object Prototype:
<script>
function Student() {
this.name = 'John';
this.gender = 'Male';}
Student.prototype.sayHi= function(){alert("Hi");};
alert(proto.constructor);
</script>
Output:
67
A Complete Overview On: Web-Development
Changing Prototype:
<script>
68
Ayush Mauryavanshi
function Student() {
this.name = 'John';
this.gender = 'Male';
Student.prototype.age = 15;
Student.prototype = { age : 20 };
</script>
69
A Complete Overview On: Web-Development
Boolean.Prototype Constructor:
Syntax:
Boolean.prototype.name = value
o Boolean.prototype.valueOf()
o Boolean.prototype.toString()
*******
70
Ayush Mauryavanshi
7. Machine Learning
# Artificial Intelligence
Artificial intelligence (AI) refers to a machine's ability to execute
cognitive processes similar to those performed by humans, such as
sensing, understanding, thinking, and resolving issues. The human
level in teammates of logic, speaking, and perception is the
standard for AI.
Biology
Psychology Maths
Artificial
Neuron Intelligence Sociology
Science
Computer
Philosphy
Science
71
A Complete Overview On: Web-Development
72
Ayush Mauryavanshi
o Artificial Intelligence
o Machine Learning
o Deep learning
73
A Complete Overview On: Web-Development
Environment
LA Supervisor
Desired o/p
Actual output
Error +
74
Ayush Mauryavanshi
Environment
Input
LA Output
Error
Environment
Input Reward
LA Output
1.Transfer learning:
75
A Complete Overview On: Web-Development
Learning system
Data set 1
task 1
Learning
Data set 2
system task 2
76
Ayush Mauryavanshi
Fully
Max.
Input Convo Flattin Conne
Poolin Output
Data lution g cted
g
Layer
Output of Convolution
77
A Complete Overview On: Web-Development
The main and most important feature of RNN is hidden state which
remembers some information about a sequence. RNN have a
memory which remembers all information about what has been
calculated. It uses the same parameters for each input as it
performs the same task on all the inputs or hidden layers to
produce the output.
Output
Hidden
State (Layer)
Input
78
Ayush Mauryavanshi
Flow diagram
79
A Complete Overview On: Web-Development
Support Vectors are the points that are closer to hyperbola and
influence the position and orientation of the hyper plane. Using
these support vectors, we maximize the classifier. Deleting the
support vectors will change the position of the hyper plane.
o Kernel: The kernel takes the input data into any first as
required by the users. Linear, polynomials, radial basis
functions (RBFs), and non-linear hyper planes generated to
use the polynomial and RBF functions are all examples of
kernels utilized in SVM. By using an improved kernel to
separate non-linear classifications, you can get accurate
classifiers.
81
A Complete Overview On: Web-Development
Automatic
language
Email translation Image
spam and
recogniti
malware
on
filtering
Medical Speech
recogniti
diagnosis on
Applications
of Machine
Stock learning
Traffic
market
prediction
trading
Online Prduct
fraud recommd
detection ation
Virtual Self
personal driving
assistant cars
******
83
A Complete Overview On: Web-Development
8. Conclusion
Exercise Questions:
HTML XML
It is a markup language It is a cross platform,
that dictates how the software and hardware
text looks in the web independent tool for
browser (thus for transmitting information.
formatting and layout). It describes the data and
Example: how it is organized.
<b> <i> Radha </i> </b> Example:
<sample>
<name> Radha </name>
<address> Bhopal
</address>
</sample>
It has a finite set of pre- In XML we can create
define tags. our own tags.
a. <ins> tag
b. <pre> tag
c. <tt> tag
d. <wbr> tag
84
Ayush Mauryavanshi
a. get method
b. host method
c. put method
d. none of these
a. <example>
b. <exp>
c. <xmp>
d. none of the above
<!DOCTYPE html>
<html>
<body>
85
A Complete Overview On: Web-Development
</body>
</html>
a. CSS
b. XML
c. JAVASCRIPT
d. HTML
a. embed
b. object
c. iframe
d. all of the above
86
Ayush Mauryavanshi
Answers:
2. <Input type “check box” name = “hello”>
3. a
4. b
5. d
6. c
7. Hello
I am Daisy
I am in 9th standard.
8. d
9. b
10. True
11. d
12. <a href="www.yahoo.com">Let's visit yahoo's official
website!</a>
*******
87
A Complete Overview On: Web-Development
a. margin
b. border
c. both a and b
d. none of the above
<!DOCTYPE html>
<html>
<head>
<style>
*{
text-align: left;
color: Red;
</style>
</head>
88
Ayush Mauryavanshi
<body>
<h1>Example!</h1>
<p>Thank you!!</p>
</body>
</html>
a. Creating a website.
b. Inserting color fonts.
c. Inserting animations and graphics.
d. All of the above.
89
A Complete Overview On: Web-Development
Answers:
1. d
2. d
3. background-color
4. c
5. b
6.
7.
Example!
CSS is used for defining the styles of tags in Html.
Here it is!
Thank you!!
7. c
8. a
9. A comma ( , )should be used to separate every selector.
10. False
*******
JavaScript:
a. HTML
b. MYSQL
c. PHP
d. CSS
90
Ayush Mauryavanshi
<script type="text/javascript">
a = 5 + "7";
document.write(a);
</script>
int x=12;
if(x<15)
document.write(9);
else
document.write(x);
<script type="text/javascript">
var a="Helloworld";
var x=a.lastIndexOf("r");
document.write(x);
</script>
91
A Complete Overview On: Web-Development
a. 8
b. 0
c. 7
d. error
Answers:
1. True
2. a
3. 57
4. 9
5. c
*******
Machine Learning:
1. p∨¬q indicates which clause?
a. hack clause
b. horn clause
c. structural clause
d. system clause
a. SystemUnit
b. structuralunits.
c. dataunits
d. empiricalunits
93
A Complete Overview On: Web-Development
Answers:
1. b
2. a
3. d
4. b
5. c
6. i. a
ii. c
*****
94