Skip to content

Page2.html

 

<html>

/ *  the line of code underneath travels to the css document to read and understand what to choose as formatting */

<link rel=”stylesheet” type=”text/css” href=”ex2.css” />

<body>

<h1>I CAN REALLY MAKE 2 PAGES WITH THE SAME STYLE???</h1>

<p> NO, WAY … THIS IS TOTALLY CRAZY TOWN!!!.</p>\

 <p> <a href=”http://www.justinhoffman.net”>HTML Tutorial</a> This is a link to a page on this website. </p>

/ *  the line of code underneath travels to the server  to find the image located on the server, the image name is “image.png”  — remember to save for web your images before placing them on the server … also few the image reference example to see how you can few all your images on the server before linking them…  */

<p>An image from W3Schools:</p> <img src=”image.png” alt=”Wow… where is that image from?” width=”304″ height=”400″ />

 

/* notice that these images have a width of 304 and a height of 400 … try changing the width and height… and ofcourse go to W3 shools reference for image positioning to move the image to your desired location or view the other tutorials on our class site… or view the source code from other sites to find see how they moved their images around!! */

</body>

 

</html>