Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Hyper Text Markup Language, Slides of Web Design and Development

HTML stands for Hyper Text Markup Language

Typology: Slides

2017/2018

Uploaded on 01/17/2018

mhk-jain
mhk-jain 🇮🇳

1 document

1 / 52

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Mahak Jain
BCA 2nd year
Deepshikha College Of Technical Education
PRESENTATION
PRESENTATION
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34

Partial preview of the text

Download Hyper Text Markup Language and more Slides Web Design and Development in PDF only on Docsity!

Mahak Jain BCA 2nd^ year Deepshikha College Of Technical Education

PRESENTATION PRESENTATION

Hyper Text

Markup

Language

HTML

 (^) HTML refers to Hyper Text Markup Language.  It is the most widely used language to write web page.  In 1991, HTML was developed by Tim Berners Lee at Geneva in Switzerland.

VERSIONS OF HTML

Since early days of the web, there have been many versions of HTML:  HTML 1991  HTML 2.0 1995  (^) HTML 3.2 1997  (^) HTML 4.01 1999  XHTML 2000  HTML 5 2014

EXPLANATION OF HTML

 The <!doctype> declaration defines this document to be HTML 5.  (^) The element is the root element of an HTML page.  The element contains meta information about the document.  The element specifies a title for the document.  (^) The <body> element contains the visible page content.</p> <h3>HTML TAGS</h3> <p> (^) HTML tags are element names surround by angle brackets: <tagname>write your content</tagname> Example: <h1> abcdef </h1>  The first tag is start tag (opening tag) and the second tag is end tag (closing tag).  The end tag is written like the start tag, but with a forward slash inserted before the tag name.</p> <h3>HTML ATTRIBUTES</h3> <p> Attributes provide additional information about HTML elements.  (^) All HTML elements can have attributes.  Attributes are always declared in the start tag.  Attributes usually come in name/value pairs like: name=“value” Examples <strong><a href=“url”> <input type=“text”> Attribut e Attribut e</strong></p> <h3>HTML LINKS</h3> <p>HTML links are defined with the <a> tag: <a href=“connected page location” > <strong>Note :</strong>  <strong>href</strong> is a attribute of <a> tag  Attributes are used to provide additional information about HTML elements.  (^) <a> tag is a anchor tag. <strong>Cont..</strong></p> <h3>EXTERNAL LINK</h3> <p>Example <html> <head> <title>Hyperlink

External link

Google **Here it look in a browser**

INTERNAL LINK

Example Hyperlink

Internal link

Google
Google

Google is an American multinational technology company that specializes in Internet-related services and products.

**Cont..**

HTML IMAGES

HTML images are defined with the tag. <img src=“location of your image”> <img src=“location of your image” width=“45” height=“45”> Note:  (^) src is a source. Cont..

Example Image

Deepshikha College Of Technical Education

**Here it look like a browser**

Example HTML Table

S.No Name
1 Chinki
2 Mahak
Here it look like a browser **Cont..** In this example border is a attribute of table and is used to put a border across all cell. **Attribute Cont..**