MMI-402 Websites Management and Development
Course outline HTML 4.0 Coding Principles of web design Adobe Photoshop 7.0 for Web Adobe Dreamweaver CS3 for Web Design CSS 2.0 Coding Simple Java Script Site map Publishing website online Project
Week 1 <title> Html Part I </title>
1- What is HTML?
A- HTML definition It’s a computer language that allow website creation. Which makes anyone else connected to the Internet view this website.  easy to learn,  and  powerful  in what it allows you to create. The definition of HTML is  Hyper Text Markup Language. Hyper Text  is the method by which you move around on the web -  hyper links  -.  Markup  is what  HTML tags  do to the text inside them.  HTML is a  Language , as it has code-words and syntax like any other language.
HTML consists of a series of short  codes  typed into a text-file these are the tags. The text is then  saved as an  html  file , and  viewed through a browser . This browser reads the file and translates the text into a visible form, hopefully rendering the page as the author had intended. B- How does HTML work?
C- What are the <tags> up to? The tags are what separate normal text from HTML code. You might know them as the words between the <angle-brackets>. They allow images and tables and stuff, just by telling your browser what to render on the page. Different tags will perform different functions. The tags themselves don’t appear when you view your page through a browser, but their effects do. The simplest tags do nothing more than apply formatting to some text, as shown in Listing 1-1. <b> These words will be bold </b> , and these will not. Listing 1-1:  The sample bold text tag
Figure 1-1:  The sample bold text rendered by Internet Explorer C- What are the <tags> up to?
Not at all. You can code your entire website  offline , storing it all on your own computer, and then just transfer all the files onto the web. Then whenever you have new content, you just add that to the existing online version of your site. It’s really quite simple. D- Do I have to be online all the time?
Of course, but since making websites became more popular and needs increased many other supporting languages have been created to allow new stuff to happen. E- Is there anything HTML can’t do?
2- How to write a <tag>?
A- Tag's structure: To indicate where a given element begins, place the appropriate tag before it. This consists of a certain abbreviation sandwiched by the less-than (<) and greater-than (>) symbols. For example, to mark up a paragraph, precede the text with the opening-paragraph tag (<p>), To indicate where an element ends, place the corresponding closing tag at the end. This looks the same as the opening tag, except for the addition of the forward slash, as shown in Listing 2-1. <p> This is a sample paragraph, to demonstrate how to write a tag and give it a proper alignment with tag's attributes </p> Listing 2-1:  The sample paragraph tag
Figure 2-1:  The sample paragraph rendered by Internet Explorer A- Tag's structure:
B- Tag’s attributes When you define a tag’s  attributes , which are its individual properties, enter them inside the opening tag and separate them by spaces. The closing tag doesn’t get any attributes. For instance, the attribute for aligning a paragraph is written, simply enough, as align. Add it to the opening tag To set the attribute equal to an appropriate value, define that value by using an equal sign and quotation marks, as shown in Listing 2-2. <p align=&quot;right&quot;>This is a sample paragraph, to demonstrate how to write a tag and give it a proper alignment with tag's attributes</p> Listing 2-2:  The sample paragraph tag attributes
Figure 2-2:  The sample paragraph aligned right rendered by Internet Explorer B- Tag’s attributes
3- Structuring HTML documents
A-  Primary container  : Let's open our text editor and begin a new blank document, then type the tag  <html>  at the top of the document. This tag begins the document’s primary container. It defines the type of document you’re creating: an  HTML  document. This opening <html> tag requires a closing tag, so hit Enter twice to move down a few lines and then enter the closing tag,  </html> . our document should appear as shown in Listing 3-1. <html> </html> Listing 3-1:  The Primary container of our  HTML  document
B- The head section: Now place your cursor on the line between the opening and closing tags. Type the tag <head>, which defines the head section of the document. Hit Enter twice and then type </head>. Our document should now resemble and appear as shown in Listing 3-2. <html> <head> <head> </html> Listing 3-2:  The head section of our  HTML  document <html> <head> </head> </html>
C- Defining the document title: To create the document title, which appears in the title bar of the browser window, enter <title> and </title> between the head tags of your document, as shown in Listing 3-3. For example, entering <title>Lecture 1</title> produces what you see in Figure 3-1.  <html> <head> <title>Lecture 1</title> </head> </html> Listing 3-3:  Defining the document title tags Figure 3-1:  The document title displayed on the title bar of Internet Explorer
D- The last element: The last element to add to your document template is the body section. Between the closing </head> and the closing </html> tags, enter opening <body> and closing </body> body tags, as shown in Listing 3-4.  Listing 3-4:  An  HTML  code with  head  and  body  sections defined <html> <head> <title>Lecture 1</title> </head> <body> </body> </html>
E-  Saving : Save our document. Press File >> Save As. You can give it a name like blank.html and then use it each time you want to start a new document by opening it, making changes, and resaving the file with a different name. Figure 3-2:  Save As screen in Notepad
4- Meta Data
A- What is Meta Data? A document’s head section often contains descriptive information about the document, referred to as metadata. Using the  <meta>  tag and its various attributes, you can define such document properties as the  author , the  expiration date , document  keywords , and  descriptions . When search engines that support metadata read your document, they can use this information to index it in order to return your page when someone does a search on subjects matching the keywords you have defined.
Figure 4-1:  Google search page describe <meta> tags Page title with meta keywords Meta Description
B- Defining Meta Tag Keywords: In the head section of your document, below the document title, enter the  <meta>  tag, Add the name attribute to the <meta> tag and set it equal to “ keywords ”, Insert a space and add the content attribute: Listing 4-1:  An  HTML  code with the  <meta>  tag defined name attribute  &quot;keywords&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> </head> <body> </body> </html>
C-  Defining Meta Tag Descriptions : In the head section of your document, below the document title, insert another <meta> tag. Add the name attribute to your <meta> tag and set it equal to  “description” , Press the Spacebar and add the content attribute, which accepts your description, Set the content attribute equal to a short piece of descriptive text, as shown in Listing 4-2. Listing 4-2:  An HTML code with the <meta> tag defined name attribute &quot;description&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> </head> <body> </body> </html>
D-  Defining the Author of a Document Using Meta Tags : Enter a <meta> tag into the head section of your document, setting the name attribute equal to  &quot;author&quot; , Follow the name attribute and author value with the content attribute, Set the content attribute equal to the name of the author, as shown in Listing 4-3. Listing 4-3:  An HTML code with the <meta> tag defined name attribute &quot;author&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> </head> <body> </body> </html>
E-  Defining Meta Tag Expiration Dates : Insert a <meta> tag in the head section, setting the name attribute equal to  &quot;expires&quot; , Insert the content attribute, Set the content attribute equal to the expiration date, in  (GMT),  as shown in Listing 4-4. Listing 4-4:  An HTML code with the <meta> tag defined name attribute &quot;expires&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta name=&quot;expires&quot; content=&quot;Tue, 20 October 2009 02:00:00 GMT&quot; /> </head> <body>
E-  Defining Meta Tag Expiration Dates : To prevent browsers from caching your documents at all, enter a <meta> tag with the name attribute set equal to  &quot;pragma&quot; , and the content attribute set equal to no-cache, as shown in Listing 4-5. Listing 4-5:  An HTML code with the <meta> tag defined name attribute &quot;expires&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta name=&quot;expires&quot; content=&quot;Tue, 20 October 2009 13:00:00 GMT&quot; /> <meta name=”pragma” content=”no-cache” /> </head> <body>
F-  Refreshing Page Content Using Meta Tags : Enter a <meta> tag into the head section of your document, Add the  http-equiv  attribute and set it equal to  &quot;refresh&quot; , Follow the http-equiv attribute and refresh value with the content attribute and set it equal to the number of seconds you want the page to remain static before refreshing, and to force the browser to load another document after the refresh time elapses, follow the refresh rate value with a semicolon and enter  url=pathname , as shown in Listing 4-6. In this example, the page will refresh after five seconds then load &quot;abozeed.info&quot;. Listing 4-6:  An HTML code with the <meta> tag defined name attribute &quot;http-equiv“ <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.abozeed.info&quot; /> </head> <body>
G- Defining Meta Tag Robot Values: Enter a <meta> tag in the head section of your document, below the document title, define the name attribute and set it equal to  &quot;robots&quot; , to instruct robots to read your entire page and follow all the links within it, and follow the name attribute and robots value with the content attribute and set it equal to  &quot;all, follow&quot; , as shown in Listing 4-7. Listing 4-7:  An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 1 <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.abozeed.info&quot; /> <meta name=&quot;robots&quot; content=&quot;all, follow&quot; /> </head> <body> </body> </html>
G- Defining Meta Tag Robot Values: To instruct robots to read your page, but refrain from following the links within it, set the content attribute equal to  &quot;all, nofollow&quot; , as shown in Listing 4-8. Listing 4-8:  An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 2 <meta name=&quot;robots&quot; content=&quot;all, nofollow&quot; /> And to prevent robots from reading your page at all, set the content attribute equal to  &quot;none&quot; , as shown in Listing 4-9. Listing 4-9:  An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 3 <meta name=&quot;robots&quot; content=&quot;none&quot; />
5- Controlling the Document Background
A- What is Document Background? We  can specify a document’s background color or background image using two different attributes of the  <body>  tag. Background colors simply fill the entire document. Background images are  tiled  by the browser, meaning they are repeated left to right, top to bottom, filling up the visible space of the browser window.
B- Color Background: To define a background color for a document, add the  bgcolor  attribute to the  <body>  tag, Set the bgcolor attribute equal to a hexadecimal color value or predefined color name. Listing 5-1 shows a document with a black background color defined in hexadecimal notation, Figure5-1 displays the result in a browser. Listing 5-1:  An HTML code with the <body> tag defined name attribute &quot;bgcolor&quot;   <html> <head> <title>Background Color</title> </head> <body bgcolor=&quot;#000000&quot; text=&quot;white&quot;> <h1>Here we have a black background with white text...</h1> </body> </html>
Figure 5-1:  The sample color background rendered by Internet Explorer B- Color Background:
C- Images Background: To specify a background image, add the  background  attribute to the  <body>  tag, Set the background attribute equal to the pathname of the image file on your Web server. Listing 5-2 provides a code sample of a document that makes use of a tiling background texture graphic. Figure 5-2 displays the result in a browser. Listing 5-2:  An  HTML  code with the  <body>  tag defined name attribute  &quot;background&quot;   <html> <head> <title>Background Images</title> </head> <body background=&quot;images/bg_stone.jpg&quot;> <h1>Isn’t this a nice stone background?</h1> </body> </html>
Figure 5-2:  The sample image background rendered by Internet Explorer C- Images Background:
End of Week 1
Next Week Working with text Working with image Audio and Video Hyper Links
For Assignments and Quizzes http://iams.abozeed.info
 

More Related Content

PPT
Tutorial 08 - Creating Effective Web Pages
PPT
Tutorial 8 - Creating Effective Web Pages
 
ODP
Htmltag.ppt
PDF
PDF
Introduction to HTML
PPT
Html part2 (1)
PPTX
Cse html ppt
PPT
Intro to html
Tutorial 08 - Creating Effective Web Pages
Tutorial 8 - Creating Effective Web Pages
 
Htmltag.ppt
Introduction to HTML
Html part2 (1)
Cse html ppt
Intro to html

What's hot (17)

PPT
static dynamic html tags
PPT
Understanding THML
PPTX
PDF
HTML language and all its tags .....
PPT
Html for beginners part I
DOCX
html tags
PPT
Diva
PPT
Semantically Correct And Standards Compliance Html
PPT
Intro Html
ODP
Html intro
DOCX
INTRODUCTION TO HTML
PPT
Introduction to HTML
PPT
Unit 2.3 Part 1
PPT
HTML
PPT
PPT
Html tag
PDF
Html Tutorial
static dynamic html tags
Understanding THML
HTML language and all its tags .....
Html for beginners part I
html tags
Diva
Semantically Correct And Standards Compliance Html
Intro Html
Html intro
INTRODUCTION TO HTML
Introduction to HTML
Unit 2.3 Part 1
HTML
Html tag
Html Tutorial

Viewers also liked (9)

PPTX
Social Measurement Success Stories
PPSX
Sea camp 2012
PPTX
Designing call presentation
PPT
Winston Resources Summary 2009 Updated 061109
PPSX
Fitriah ab kf 017.10 a.10
PPT
LinkedIn Helps Get a Job
PPT
Wood Partners Internal Green Building Presentation
PPT
Pre Release Party Slides
PPT
Jamaica no problem
Social Measurement Success Stories
Sea camp 2012
Designing call presentation
Winston Resources Summary 2009 Updated 061109
Fitriah ab kf 017.10 a.10
LinkedIn Helps Get a Job
Wood Partners Internal Green Building Presentation
Pre Release Party Slides
Jamaica no problem

Similar to Lecture1 (20)

PPS
MMI-402 - Lecture 1
PPT
Html For Beginners 2
PPT
Design Tools Html Xhtml
PPT
ODP
Prabu html
PPT
HTML Fundamentals
PPT
Intro to html
PPT
introdution-to-html (1).ppt
PPT
Html basic
PPT
introdution-to-html,regarding high level language
PPT
PPT
introdution-to-html.ppt
PPT
introdution-to-html.ppt
PDF
Let me design
PPT
summary html.ppt
PPT
introdution-to-html-introdution-to-html.ppt
PPT
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
PPTX
html.pptx
PPT
introdution-to-html.ppt
MMI-402 - Lecture 1
Html For Beginners 2
Design Tools Html Xhtml
Prabu html
HTML Fundamentals
Intro to html
introdution-to-html (1).ppt
Html basic
introdution-to-html,regarding high level language
introdution-to-html.ppt
introdution-to-html.ppt
Let me design
summary html.ppt
introdution-to-html-introdution-to-html.ppt
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
html.pptx
introdution-to-html.ppt

Recently uploaded (20)

PDF
Addressing the challenges of harmonizing law and artificial intelligence tech...
PDF
Fitaura: AI & Machine Learning Powered Fitness Tracker
PDF
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
PPTX
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
PDF
The Digital Engine Room: Unlocking APAC’s Economic and Digital Potential thro...
PDF
Examining Bias in AI Generated News Content.pdf
PDF
TicketRoot: Event Tech Solutions Deck 2025
PDF
Revolutionizing recommendations a survey: a comprehensive exploration of mode...
PDF
EGCB_Solar_Project_Presentation_and Finalcial Analysis.pdf
PDF
Child-friendly e-learning for artificial intelligence education in Indonesia:...
PDF
Intravenous drug administration application for pediatric patients via augmen...
PDF
Ebook - The Future of AI A Comprehensive Guide.pdf
PDF
substrate PowerPoint Presentation basic one
PDF
GDG Cloud Southlake #45: Patrick Debois: The Impact of GenAI on Development a...
PDF
“Introduction to Designing with AI Agents,” a Presentation from Amazon Web Se...
PPTX
Report in SIP_Distance_Learning_Technology_Impact.pptx
PPTX
Presentation - Principles of Instructional Design.pptx
PPTX
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
PDF
Applying Agentic AI in Enterprise Automation
PPTX
CRM(Customer Relationship Managmnet) Presentation
Addressing the challenges of harmonizing law and artificial intelligence tech...
Fitaura: AI & Machine Learning Powered Fitness Tracker
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
The Digital Engine Room: Unlocking APAC’s Economic and Digital Potential thro...
Examining Bias in AI Generated News Content.pdf
TicketRoot: Event Tech Solutions Deck 2025
Revolutionizing recommendations a survey: a comprehensive exploration of mode...
EGCB_Solar_Project_Presentation_and Finalcial Analysis.pdf
Child-friendly e-learning for artificial intelligence education in Indonesia:...
Intravenous drug administration application for pediatric patients via augmen...
Ebook - The Future of AI A Comprehensive Guide.pdf
substrate PowerPoint Presentation basic one
GDG Cloud Southlake #45: Patrick Debois: The Impact of GenAI on Development a...
“Introduction to Designing with AI Agents,” a Presentation from Amazon Web Se...
Report in SIP_Distance_Learning_Technology_Impact.pptx
Presentation - Principles of Instructional Design.pptx
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
Applying Agentic AI in Enterprise Automation
CRM(Customer Relationship Managmnet) Presentation

Lecture1

  • 1. MMI-402 Websites Management and Development
  • 2. Course outline HTML 4.0 Coding Principles of web design Adobe Photoshop 7.0 for Web Adobe Dreamweaver CS3 for Web Design CSS 2.0 Coding Simple Java Script Site map Publishing website online Project
  • 3. Week 1 <title> Html Part I </title>
  • 4. 1- What is HTML?
  • 5. A- HTML definition It’s a computer language that allow website creation. Which makes anyone else connected to the Internet view this website. easy to learn, and powerful in what it allows you to create. The definition of HTML is Hyper Text Markup Language. Hyper Text is the method by which you move around on the web - hyper links -. Markup is what HTML tags do to the text inside them. HTML is a Language , as it has code-words and syntax like any other language.
  • 6. HTML consists of a series of short codes typed into a text-file these are the tags. The text is then saved as an html file , and viewed through a browser . This browser reads the file and translates the text into a visible form, hopefully rendering the page as the author had intended. B- How does HTML work?
  • 7. C- What are the <tags> up to? The tags are what separate normal text from HTML code. You might know them as the words between the <angle-brackets>. They allow images and tables and stuff, just by telling your browser what to render on the page. Different tags will perform different functions. The tags themselves don’t appear when you view your page through a browser, but their effects do. The simplest tags do nothing more than apply formatting to some text, as shown in Listing 1-1. <b> These words will be bold </b> , and these will not. Listing 1-1: The sample bold text tag
  • 8. Figure 1-1: The sample bold text rendered by Internet Explorer C- What are the <tags> up to?
  • 9. Not at all. You can code your entire website offline , storing it all on your own computer, and then just transfer all the files onto the web. Then whenever you have new content, you just add that to the existing online version of your site. It’s really quite simple. D- Do I have to be online all the time?
  • 10. Of course, but since making websites became more popular and needs increased many other supporting languages have been created to allow new stuff to happen. E- Is there anything HTML can’t do?
  • 11. 2- How to write a <tag>?
  • 12. A- Tag's structure: To indicate where a given element begins, place the appropriate tag before it. This consists of a certain abbreviation sandwiched by the less-than (<) and greater-than (>) symbols. For example, to mark up a paragraph, precede the text with the opening-paragraph tag (<p>), To indicate where an element ends, place the corresponding closing tag at the end. This looks the same as the opening tag, except for the addition of the forward slash, as shown in Listing 2-1. <p> This is a sample paragraph, to demonstrate how to write a tag and give it a proper alignment with tag's attributes </p> Listing 2-1: The sample paragraph tag
  • 13. Figure 2-1: The sample paragraph rendered by Internet Explorer A- Tag's structure:
  • 14. B- Tag’s attributes When you define a tag’s attributes , which are its individual properties, enter them inside the opening tag and separate them by spaces. The closing tag doesn’t get any attributes. For instance, the attribute for aligning a paragraph is written, simply enough, as align. Add it to the opening tag To set the attribute equal to an appropriate value, define that value by using an equal sign and quotation marks, as shown in Listing 2-2. <p align=&quot;right&quot;>This is a sample paragraph, to demonstrate how to write a tag and give it a proper alignment with tag's attributes</p> Listing 2-2: The sample paragraph tag attributes
  • 15. Figure 2-2: The sample paragraph aligned right rendered by Internet Explorer B- Tag’s attributes
  • 16. 3- Structuring HTML documents
  • 17. A- Primary container : Let's open our text editor and begin a new blank document, then type the tag <html> at the top of the document. This tag begins the document’s primary container. It defines the type of document you’re creating: an HTML document. This opening <html> tag requires a closing tag, so hit Enter twice to move down a few lines and then enter the closing tag, </html> . our document should appear as shown in Listing 3-1. <html> </html> Listing 3-1: The Primary container of our HTML document
  • 18. B- The head section: Now place your cursor on the line between the opening and closing tags. Type the tag <head>, which defines the head section of the document. Hit Enter twice and then type </head>. Our document should now resemble and appear as shown in Listing 3-2. <html> <head> <head> </html> Listing 3-2: The head section of our HTML document <html> <head> </head> </html>
  • 19. C- Defining the document title: To create the document title, which appears in the title bar of the browser window, enter <title> and </title> between the head tags of your document, as shown in Listing 3-3. For example, entering <title>Lecture 1</title> produces what you see in Figure 3-1. <html> <head> <title>Lecture 1</title> </head> </html> Listing 3-3: Defining the document title tags Figure 3-1: The document title displayed on the title bar of Internet Explorer
  • 20. D- The last element: The last element to add to your document template is the body section. Between the closing </head> and the closing </html> tags, enter opening <body> and closing </body> body tags, as shown in Listing 3-4. Listing 3-4: An HTML code with head and body sections defined <html> <head> <title>Lecture 1</title> </head> <body> </body> </html>
  • 21. E- Saving : Save our document. Press File >> Save As. You can give it a name like blank.html and then use it each time you want to start a new document by opening it, making changes, and resaving the file with a different name. Figure 3-2: Save As screen in Notepad
  • 23. A- What is Meta Data? A document’s head section often contains descriptive information about the document, referred to as metadata. Using the <meta> tag and its various attributes, you can define such document properties as the author , the expiration date , document keywords , and descriptions . When search engines that support metadata read your document, they can use this information to index it in order to return your page when someone does a search on subjects matching the keywords you have defined.
  • 24. Figure 4-1: Google search page describe <meta> tags Page title with meta keywords Meta Description
  • 25. B- Defining Meta Tag Keywords: In the head section of your document, below the document title, enter the <meta> tag, Add the name attribute to the <meta> tag and set it equal to “ keywords ”, Insert a space and add the content attribute: Listing 4-1: An HTML code with the <meta> tag defined name attribute &quot;keywords&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> </head> <body> </body> </html>
  • 26. C- Defining Meta Tag Descriptions : In the head section of your document, below the document title, insert another <meta> tag. Add the name attribute to your <meta> tag and set it equal to “description” , Press the Spacebar and add the content attribute, which accepts your description, Set the content attribute equal to a short piece of descriptive text, as shown in Listing 4-2. Listing 4-2: An HTML code with the <meta> tag defined name attribute &quot;description&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> </head> <body> </body> </html>
  • 27. D- Defining the Author of a Document Using Meta Tags : Enter a <meta> tag into the head section of your document, setting the name attribute equal to &quot;author&quot; , Follow the name attribute and author value with the content attribute, Set the content attribute equal to the name of the author, as shown in Listing 4-3. Listing 4-3: An HTML code with the <meta> tag defined name attribute &quot;author&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> </head> <body> </body> </html>
  • 28. E- Defining Meta Tag Expiration Dates : Insert a <meta> tag in the head section, setting the name attribute equal to &quot;expires&quot; , Insert the content attribute, Set the content attribute equal to the expiration date, in (GMT), as shown in Listing 4-4. Listing 4-4: An HTML code with the <meta> tag defined name attribute &quot;expires&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta name=&quot;expires&quot; content=&quot;Tue, 20 October 2009 02:00:00 GMT&quot; /> </head> <body>
  • 29. E- Defining Meta Tag Expiration Dates : To prevent browsers from caching your documents at all, enter a <meta> tag with the name attribute set equal to &quot;pragma&quot; , and the content attribute set equal to no-cache, as shown in Listing 4-5. Listing 4-5: An HTML code with the <meta> tag defined name attribute &quot;expires&quot; <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta name=&quot;expires&quot; content=&quot;Tue, 20 October 2009 13:00:00 GMT&quot; /> <meta name=”pragma” content=”no-cache” /> </head> <body>
  • 30. F- Refreshing Page Content Using Meta Tags : Enter a <meta> tag into the head section of your document, Add the http-equiv attribute and set it equal to &quot;refresh&quot; , Follow the http-equiv attribute and refresh value with the content attribute and set it equal to the number of seconds you want the page to remain static before refreshing, and to force the browser to load another document after the refresh time elapses, follow the refresh rate value with a semicolon and enter url=pathname , as shown in Listing 4-6. In this example, the page will refresh after five seconds then load &quot;abozeed.info&quot;. Listing 4-6: An HTML code with the <meta> tag defined name attribute &quot;http-equiv“ <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.abozeed.info&quot; /> </head> <body>
  • 31. G- Defining Meta Tag Robot Values: Enter a <meta> tag in the head section of your document, below the document title, define the name attribute and set it equal to &quot;robots&quot; , to instruct robots to read your entire page and follow all the links within it, and follow the name attribute and robots value with the content attribute and set it equal to &quot;all, follow&quot; , as shown in Listing 4-7. Listing 4-7: An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 1 <html> <head> <title>Lecture 1</title> <meta name=&quot;keywords&quot; content=&quot;HTML, Hypertext Markup Language&quot; /> <meta name=&quot;description&quot; content=&quot;HTML lectures. An introductory guide for the beginning coder&quot; /> <meta name=&quot;author&quot; content=&quot;Ahmed Abozeed&quot; /> <meta http-equiv=&quot;refresh&quot; content=&quot;5; url=http://www.abozeed.info&quot; /> <meta name=&quot;robots&quot; content=&quot;all, follow&quot; /> </head> <body> </body> </html>
  • 32. G- Defining Meta Tag Robot Values: To instruct robots to read your page, but refrain from following the links within it, set the content attribute equal to &quot;all, nofollow&quot; , as shown in Listing 4-8. Listing 4-8: An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 2 <meta name=&quot;robots&quot; content=&quot;all, nofollow&quot; /> And to prevent robots from reading your page at all, set the content attribute equal to &quot;none&quot; , as shown in Listing 4-9. Listing 4-9: An HTML code with the <meta> tag defined name attribute &quot;robots&quot; 3 <meta name=&quot;robots&quot; content=&quot;none&quot; />
  • 33. 5- Controlling the Document Background
  • 34. A- What is Document Background? We can specify a document’s background color or background image using two different attributes of the <body> tag. Background colors simply fill the entire document. Background images are tiled by the browser, meaning they are repeated left to right, top to bottom, filling up the visible space of the browser window.
  • 35. B- Color Background: To define a background color for a document, add the bgcolor attribute to the <body> tag, Set the bgcolor attribute equal to a hexadecimal color value or predefined color name. Listing 5-1 shows a document with a black background color defined in hexadecimal notation, Figure5-1 displays the result in a browser. Listing 5-1: An HTML code with the <body> tag defined name attribute &quot;bgcolor&quot; <html> <head> <title>Background Color</title> </head> <body bgcolor=&quot;#000000&quot; text=&quot;white&quot;> <h1>Here we have a black background with white text...</h1> </body> </html>
  • 36. Figure 5-1: The sample color background rendered by Internet Explorer B- Color Background:
  • 37. C- Images Background: To specify a background image, add the background attribute to the <body> tag, Set the background attribute equal to the pathname of the image file on your Web server. Listing 5-2 provides a code sample of a document that makes use of a tiling background texture graphic. Figure 5-2 displays the result in a browser. Listing 5-2: An HTML code with the <body> tag defined name attribute &quot;background&quot; <html> <head> <title>Background Images</title> </head> <body background=&quot;images/bg_stone.jpg&quot;> <h1>Isn’t this a nice stone background?</h1> </body> </html>
  • 38. Figure 5-2: The sample image background rendered by Internet Explorer C- Images Background:
  • 40. Next Week Working with text Working with image Audio and Video Hyper Links
  • 41. For Assignments and Quizzes http://iams.abozeed.info
  • 42.