HTML Presntation
HTML Presntation
By - Vaibhav vibhor
WHAT
IS HTML?
• Html stands for hyper text markup language
• It is a standard markup language for web pages
• It describes a structure of web pages and consists of a series of
elements
• They are represented by tags and they tell the browser how to
display the content
• Html is not a case sensitive language
EXPLANATION
• The<html> element a root element of an html page
• The <head> element contains important information about the
webpage
• The <title> elements specifies a title for the document which is
displayed on the title bar
• The <body> element contains the visible page content which
displayed in browser’s window.
• The<h1> element defines a large heading.
• The <p> element defines a paragraph or text content of a webpage.
TAGS
• HTML tags normally come in pairs like <p> and </p>
• The first tag in a pair is the start tag, the second tag is the end tag
The end tag is written like the start tag, but with a forward slash
inserted before the tag name
CSS(CASCADING
STYLE SHEET)
• What is css?
• Css stands for cascading style sheets.css describes how html
elements are to be displayed on screen ,paper, or in other media.css
saves a lot of work. It can control the layout of multiple web pages
all at once
TYPES
OF CSS
• There are three types of css
• Inline method
• Internal method
• External method
INLINE METHOD
• It is applied to the body part of the webpage.
• Inline CSS allows you to apply a unique style to one HTML
element at a time. You assign CSS to a specific HTML element by
using the style attribute with any CSS properties defined within it..
INTERNAL
METHOD(EMBEDDED).
• An internal stylesheet holds CSS rules for the page in the head
section of the HTML file. The rules only apply to that page, but
you can configure CSS classes and IDs that can be used to style
multiple elements in the page code.
• It's impossible to style "pseudo-elements" and classes with inline
styles.so internal css is used
EXTERNAL METHOD
• An external stylesheet is a standalone . css file that is linked from a
web page. The advantage of external stylesheets is that it can be
created once and the rules applied to multiple web pages.
HOW WAS HTML CREATED..?
n 1980, physicist Tim Berners-Lee, a contractor at CERN, proposed and
prototyped ENQUIRE, a system for CERN researchers to use and share
documents. In 1989, Berners-Lee wrote a memo proposing an Internet-based
hypertext system. Berners-Lee specified HTML and wrote the browser and server
software in late 1990.
…THANK YOU…