Site Map Project

  TASK: You are to hand in the following information, regarding the web topic you received in class. Be sure to research your topic prior to developing the following information: Laundry List of all items to include on the website (please type of this list) It does not need to be in any sort of […]

Three Stooges – HTML Code

Click Here to view the Page this code generates.   index.html <html> <head> <link href="css/style.css" rel="stylesheet" type="text/css"> <title>The Three Stooges</title> </head> <body>   <table class="auto-center"> <tr> <td colspan="3"> <h1>The Three Stooges</h1> <img class="main-image" src="images/main_stooges.jpg"> </td> </tr> <tr> <td colspan="3"> <p class="body-left">The Three Stooges were an American vaudeville and comedy act of the mid-20th century (1930-1975) […]

Season – HTML Code

Click Here to view the Page this code generates.   index.html <html> <head> <title>Season – Autumn</title> <link rel="stylesheet" type="text/css" href="style.css">   <h1>Seasons</h1> <h2 class="tab">Autumn</h2>   </head>   <body> <img class="center-img" src="images/autumn.png" alt="Autumn">   <p class="tab">Autumn, also known as fall in American and Canadian English, is one of the four temperate seasons. Autumn marks the transition […]

HTML Notes

Click Here to view the webpage this code makes. [code language=”html”]</span> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Demo</title> <style type="text/css"> body { background-color: navy; color: white; margin-left: 20px; } .red { color: red; } </style> </head> <body> <img src="images/logo.png" height=100px> <h1 class="red">Hello World!</h1> <h2>Hello World!</h2> <h3>Hello World!</h3> <h4>Hello World!</h4> <h5>Hello World!</h5> <h6>Hello […]