new itr
new itr
8 Html Elements
9 Html Links
10 Html Images
11 Html Styles-CSS
12 Internal CSS
13 External CSS
14 Introduction of javascript
15 Basics of javascript
16 Operator function
17 lopping statement
18 function
19 Bootstrap
20 Features of Bootstrap
21 Advantages &
Disadvantages
of Bootstrap
22 Conclusion
23 Reference
What is HTML?
HTML stands for Hypertext Markup Language. It is used to design web pages
using the markup language. HTML is the combination of Hypertext and Markup
language. Hypertext defines the link between the web pages and markup language
defines the text document within the tag that define the structure of web pages.
<html>
<head>
<body>
Output :
WELCOME TO D Y PATIL
HTML is easy to learn, easy to apply and it’s totally free you
will just need a text editor and a browser.
HTML is supported by all the browsers and it is the most friendly
search engine.
HTML can easily integrate with other languages and is easy to
develop.
It is the basic of all programming languages and the lightest
language ever.
In HTML, the display changes frequently depending on the
window size or the device size making it comfortable to read
by the user.
Disadvantages of HTML:
HTML text editors are used to create and modify web pages. HTML
codes can be written in any text editors including the notepad. One
just needs to write HTML in any text editor and save the file with
an extension “.html” or “.html”. Some of the popular HTML
text editors are given below:
VS CODE
Bracket
Notepad
Notepad++
Sublime Text 3
Atom
HTML Comments:
Page layout is the part of graphic design that deals with the
arrangement of visual elements on a page. Page layout is used to
make the web pages look better. It establishes the overall
appearance, relative importance, and relationships between the
graphic elements to achieve a smooth flow of information and eye
movement for maximum effectiveness or impact.
Header: The part of the front end which is used at the top of the
page. <header> tag is used to add a header section on web
pages.s Syntax:
<header>
<h1>-
<h2> - - - -</h1>
---------
</
header>
Navigation bar: The navigation bar is the same as the menu list.
It is used to display the content information using hyperlinks.
<nav> tag is used to add the nav section(nav elements) in web
pages.
Syntax:
<nav>
<ul>
<li>......</li>
<li>......</li>
• Footer: The footer section contains the contact information and other
query related to web pages. The footer section is always put on the bottom
of the web pages. The <footer> tag sets the footer on web pages.
Syntax:
<footer> .....
</footer>
HTML ELEMENTS
Syntax:
<tagname > Contents...
</tagname>
Links are found in nearly all web pages. Links allow users to click
their way from page to page.
HTML Links
- Hyperlinks
HTML links
are
hyperlinks.
When you move the mouse over a link, the mouse arrow will turn into a
little hand
The HTML <a> tag defines a hyperlink. It has the following syntax:
<a href="url">link
text</a>
The most important attribute of the <a> element is the href attribute,
which indicates the link's destination.
The link text is the part that will be visible to the reader.
Clicking on the link text, will send the reader to the specified URL address.
HTML IMAGES
The following example sets the text color of ALL the <h1> elements (on
that page) to blue, and the text color of ALL the <p> elements to red.
In addition, the page will be displayed with a "powderblue"
background color:
Example:
<!DOCTYPE html>
{color: red;}
</style>
</head>
<body>
External CSS
Example:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
The external style sheet can be written in any text editor. The file must not
contain any HTML code, and must be saved with a .css extension.
body { background-
color: powderblue; } h1
color:
blue;
} p
<!DOCTYPE html>
<html>
<head> <style>
h1 { color:
blue; }font-family:
p { color
red; :
fontfamily:
courier;
160%;
</
<h1>This is a
heading</h1>
<p>This is a
paragraph.</p>
Example:
Javascript
Introduction:
Advantages of JavaScript:
JavaScript can be implemented using JavaScript statements that are placed within the
<html>
<body>
<!--
document.write("Hello World!")
//-->
</script>
This code will produce the following result − Hello World!
• Semicolons are Optional
Simple statements in JavaScript are generally followed by a
semicolon character, just as they are in C, C++, and Java.
JavaScript, however, allows you to omit this semicolon if each of
your statements are placed on a separate line. For example, the
following code could be written without semicolons.
• Case Sensitivity
JavaScript is a case-sensitive language. This means that the
language keywords, variables, function names, and any other
identifiers must always be typed with a consistent capitalization of
letters.
So the identifiers Time and TIME will convey different meanings in
JavaScript.
• JavaScript Variables
Like many other programming languages, JavaScript has variables.
Variables can be thought of as named containers. You can place
data into these containers and then refer to the data simply by
naming the container.
Before you use a variable in a JavaScript program, you must declare it.
Variables are declared with the var keyword as follows.
<script type = "text/javascript">
<!-- var
//-->
• Operator:
What is an Operator?
Let us take a simple expression 4 + 5 is equal to 9. Here 4 and 5 are
called operands and ‘+’ is called the operator. JavaScript supports the following
types of operators.
• Arithmetic Operators
• Comparison Operators
• Logical (or Relational) Operators
• Assingment Operators
• Conditional(or Ternary)Operator
• if statement
The if statement is the fundamental control statement that allows
JavaScript to make decisions and execute statements conditionally.
Syntax
The syntax for a basic if statement is as follows − if (expression)
} if...else statement
The 'if...else' statement is the next form of control statement that allows
JavaScript to execute statements in a more controlled way.
while (expression)
do
• For Loop
The 'for' loop is the most compact form of looping. It includes the
following three important parts –
2) The test statement which will test if a given condition is true or not. If
the condition is true, then the code given inside the loop will be executed,
otherwise the control will come out of the loop
• Function Definition:
<!--
//-->
</script>
Bootstrap
What is Bootstrap?
Bootstrap Layout:
Breakpoints
Containers
Grid
Columns
Gutters
Utilities
Z-index
Bootstrap Content
Reboot
Typography
Images
Tables
Figures
Bootstrap Forms
Forms
Form Controls
Select
Range
Input group
Floating labels
Form Layout
Form Grid
Horizontal Form
Validation
Bootstrap Components:
Accordion
Alerts
Badges
Breadcrumb
Buttons
Button Group
Card
Carousel
Close Button
Collapse
Dropdowns
List Group
Modal
Navbar
Offcanvas
Popovers
Pagination
Progress
Scrollspy
Spinners
Toasts
Tooltips
Features of Bootstrap:
HTML provides the basic structure of sites, which is enhanced and modified by other technologies
like CSS and JavaScript. web development is essential for all businesses in the modern world. It
can establish credibility, expand reach, provide information, increase sales, and improve
customer engagement.
https://www.linkedin.com/pulse/modern-world-requires-web-development-
all#:~:text=In%20conclusion%2C%20web%20development%20is,sales%2C
%20and%20improve%20customer%20engagement.
https://www.mygreatlearning.com/blog/top-web-development-projects/
https://montana-media-arts.github.io/mart341-webDev/modules/week-6/
conclusion/
REFERENCE:
https://www.geeksforgeeks.org/html https://www.w3schools.com/html
https://html.com/ https://www.codecademy.com/learn/learn-html