0% found this document useful (0 votes)
17 views

HTML

The document provides an introduction to HTML, CSS, and JavaScript files and their roles in building a website. The HTML file is responsible for the structure of a website, analogous to a builder constructing walls and fixtures. The CSS file is responsible for styling the website, analogous to painters and decorators. The JavaScript file allows the website to have interactive behaviors, analogous to electricians and plumbers enabling functions.

Uploaded by

sunder kreme
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

HTML

The document provides an introduction to HTML, CSS, and JavaScript files and their roles in building a website. The HTML file is responsible for the structure of a website, analogous to a builder constructing walls and fixtures. The CSS file is responsible for styling the website, analogous to painters and decorators. The JavaScript file allows the website to have interactive behaviors, analogous to electricians and plumbers enabling functions.

Uploaded by

sunder kreme
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 52

Computer Programming

.NET,
html
Introduction
The Internet
A Global network of
billions of computers and
other electronic devices.
Web Server
This computer serves you
all the data and files that
you are requesting on the
internet .
Internet Service Provider
The Company or the
people who you pay to be
able to access the internet.
DNS Server
A Computer server that contains a database
of public IP addresses.

It translates website names to IP addresses .


IP Address
It is the unique address
of a computer on the
Internet.
This file is
responsible for the
structure of your
website?
The HTML code file is responsible for the structure of your website. So if a
website was a house, then the HTML would be the builder who would come
in to build the walls or put in a toilet. Basically they establish the structure of
your house. And when you write HTML code, you also build up the structure
of your website. So you could use HTML to add an image or button or text
box, whatever it is that you need in your website.
This file is
responsible for
styling your
website?
the second type of file are CSS files, and these files are responsible for
styling your website. If you were building a house, then this would be the
painters and decorators. They would be going around painting the walls or
adding stylistic flourishes to your place, and generally making the place look
the way that you want it to. And that's exactly what CSS code does as well.
When you incorporate CSS, it allows you to specify how you want your
website to look.
This file allows
your website to
actually do things
or have behavior?
Now the final component is the JavaScript code. And this is the code that
allows your website to actually do things or have behavior. And if you were
building a house, you would have the electrician come in, who would be able
to connect the wires so that your light bulbs switch on or somebody who
comes in and does the plumbing so that your toilet can flush. And the
JavaScript code does exactly that. It allows your website to actually do things
and have behavior.
Webpage
Website
Web server
Web Page
• A document which can be displayed in a
web browser . These are also often called
just "pages."
Website
• A collection of web pages which are
grouped together and usually
connected in various ways. Often
called a "web site" or simply a "site."
Web Server
• A computer that hosts a website on
the Internet.
Web Browser
• The purpose of a web browser
(Chrome, IE, Firefox, Safari) is to read
HTML documents and display them.
I want to create a
webpage as a
beginner how can
I start?

Learn
HTML
html
HTML
HTML stands for Hyper Text Markup Language.
HTML is the combination of Hypertext and Markup
language.

Hypertext defines the link between the web pages.

Markup language is used to define the text


document within tag which defines the structure of
web pages.
HTML Versions
Since the early days of the web, there have been
many versions of HTML:

Version Year
HTML 1991
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 2000
HTML5 2014
What can I do with
HTML?
Can I Use/work with
HTML even without
internet
connection/offline?
html Editors
Notepad
Visual Studio Code
Atom
SYNTAX
is a sequence of characters that is intended to be
written in a particular programming language
example
<html>
<body>
<h1>My First Heading</h1>
</body>
</html>

How many HTML Elements do


you see?
example Elements can contain
other elements.
<html>
<body>
<h1>My First Heading</h1>
</body>
</html>

HTML Element 1
HTML Element
3
HTML Element 2

You might also like