1 / 13

HTML Webpages

HTML Webpages. Samples. Open up Internet Explorer Browser NDCL.org Go to Page—View Source Sample 1 Sample 2 Sample 3. Open Notepad. Found under Start—Programs—Accessories. Save File Twice. Create New Folder Call it “Webpage” File—Save As Index.txt File—Save As Index.html.

nasim-witt
Télécharger la présentation

HTML Webpages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HTML Webpages

  2. Samples Open up Internet Explorer Browser NDCL.org Go to Page—View Source Sample 1 Sample 2 Sample 3

  3. Open Notepad Found under Start—Programs—Accessories

  4. Save File Twice • Create New Folder • Call it “Webpage” • File—Save As • Index.txt • File—Save As • Index.html

  5. Webpage Folder Every item in your webpage must be saved here X

  6. Begin Typing Code All tags must be typed inside angle brackets <>=start </>=stop

  7. On Tags Can start or turn on commands <html> Indicates to browser page is written in HTML <head> Used to enter information about page Does not appear on page <title> What you want to appear in title bar of browser window <body> The content users will see must be typed following this

  8. Off Tags Can stop or turn off commands </title> Used to stop the title </head> Used to stop heading </body> Comes directly before the html off tag </html> Last command in notepad

  9. Saving File Save As--index.txt File Save As--index.html Refresh Page

  10. Let’ s Get Started <html> <head> <title>My First Webpage </title> </head> <body>

  11. <body> • Everything you want on your webpage follows this tag • <font face=arial>Hello</font>

  12. Background • <body bgcolor=red>

  13. Image for Background • Find an image and save it to your webpage folder • Type this code inside the body on tag • <bodybackground=“file.jpg”

More Related