Вы находитесь на странице: 1из 2

HTML - Hypertext markup Language - design static webpage

- Tim Berner's Lee


- World Wide Web
- webpage - content cannot be changed
- HTML version - HTML1,2.0,3.2,4,XHTML,5 - add predefined tags to newer version
for HTML5 - <audio> </audio>, <video> </video>
- HTML - Hypertext Markup Language - contains markup tags
- Tags - open angle bracket keywords close angle bracket ex <html>
- opening tags - <html>
- closing tags - </html>

--------------------------------------------------------------------------------
----
Structure of HTML
document type declaration
html
head section
body section
html

--------------------------------------------------------------------------------
------------------
<!doctype html>
<html>
<head>
<title> Welcome to HTML Page
</head>
<body>
Session 1
</body>
</html>
-----------------------------------------------------------

Meta tags - data or information about data


Meta elements are typically used to specify page
description, keywords, author of the document, last modified, and other metadata
.

included in head tags --


attributes - name and value pair
Name - Name for the property. Can be anything. Examples keywords, descriptio
n, author, revised etc.
content - Specifies the property's value.
http-equiv - Used for http response message headers.
--------------------------------------------------------------------------------
------------------------

Document Description
You can use <meta> tag to give a short description about the document.
This again can be used by various search engines while indexing your webpage for
searching purpose.
You can use <meta> tag to give information about when last time the document was
updated.
This information can be used by various web browsers while refreshing your webp
age.
Document Refreshing
A <meta> tag can be used to specify a duration after which your web page will ke
ep refreshing automatically.
--------------------------------------------------------------------------------
--------

<meta name="keywords" content="HTML" />


<meta name="description" content=" learning for HTML session" />
<meta name="author" content=" Mohammed" />
<meta name="revised" content=" 26/7/2016" />
<meta http-equiv="refresh" content="5" />
<meta http-equiv="refresh" content="3;url=http://http://www.wix.com/" />
--------------------------------------------------------------------------------
------------------
Heading tags -
<h1> </h1>
<h2> </h2>
<h3> </h3>
<h4> </h4>
--------------------------------------------------------------------

http://www.wix.com/

Вам также может понравиться