Starting from:
$35

$29

LAB 03 INTRODUCTION TO HTML Solution

QUICK TOUR OF HTML







PREPARING DIRECTORIES







If you haven’t done so already, create a folder in your personal drive for all the labs for this book.



From the main labs folder (either downloaded from the textbook’s web site using code provided with book or in a common location provided by your instructor), copy the folder titled lab03 to your course folder created in step one.



Now we are ready to create our first web page.







E x e r c i s e 3 . 1 — F I R S T W E B P A G E







Using some type of text or HTML editor (such as Notepad, Notepad++, Brackets, Sublime, etc), type in the following:



<!DOCTYPE html




<titleA Very Small Document</title




<pThis is a simple document with not much content</p




Note: these labs use the convention of red bolded text to indicate content to change/enter.




Save the file as lab03-exercise01.html in the lab03 folder on your personal drive (the folder you just created in the Preparing Directories step above).



Start up FireFox, Chrome, Internet Explorer or some other browser. Open the file lab03-exercise01.html. To do this, you could use the Open command in the menu, drag-and-drop the file from the file manager of the operating system, or double-click the file from the operating system file manager.



This will display the file created in step one in the browser window.




Switch back to your text editor. Position the cursor before “This is a simple” and then press Enter three times. Position cursor after the word “much”. Press space five times.



Save the changes and then switch back to browser. Refresh the page. Notice that the browser ignores extra spaces and paragraph returns.



Remove the extra spaces and returns added in step 4. Save changes.



























Page 2 of 14

Fundamentals of Web Development
3



















EXERCISE 3.2 — ADDITIONAL STRUCTURE TAGS







Create a new HTML document with the following content:



<!DOCTYPE html <html lang="en" <head




<meta charset="utf-8"




<titleShare Your Travels -- New York - Central Park</title </head

<body




<h1Share Your Travels</h1 <h2New York - Central Park</h2




<h3Description</h3




<pPhoto by Randy Connolly</p




<pThis photo of Conservatory Pond in Central Park New York City was taken on October 22, 2011 with a Canon EOS 30D camera. </p










<h3Reviews</h3




<div




<pBy Ricardo on September 15, 2012</p




<pEasy on the HDR buddy.</p




</div




<hr/




</body




</html




Notice that this document has additional structure tags (<head, <body, <html) that were required in XHTML but are now optional in HTML5.




Save your file as lab03-exercise02.html and test file in browser. The result should look similar to that shown in Figure 3.1.


Lab 3: Introduction to HTML


































































Figure 3.1 – Exercise 3 Complete
















EXERCISE 3.3 — MAKING MISTAKES







Open lab03-exercise03.html (which has the same content as the last exercise).



Before the text “Conservatory” (in the second paragraph tag), add the tag <randy.



Save and then test in browser. After testing, remove the <randy tag.



Sadly there is no <randy tag in HTML. Your browser will simply ignore any tag it does not recognize.




Remove the trailing </h1 end tag, save and then test.



Since the <h1 tag is never closed, the browser assumes that the content after it should continue being displayed as a first-level heading.




Put back the trailing </h1 end tag (i.e., after “Share Your Travels”).



Change the <h1 tag to <H1, save and then test. Notice that HTML5 is case insensitive.
















































Page 4 of 14

Fundamentals of Web Development
5










LINKING




Hyperlinks are an essential feature of any web page. Links are created via the anchor (<a) element.







EXERCISE 3.4 — LINKING







Open lab03-exercise04.html and add the following bolded text:



<pThis photo of Conservatory Pond in




<a href="http://www.centralpark.com/"Central Park</a in New York City was taken on October 22, 2011 with a Canon EOS 30D camera.

</p




This will create an external link.




Save changes and test in browser.



Modify the document by adding the following link and test.



<pThis photo of Conservatory Pond in




<a href="http://www.centralpark.com/"Central Park</a in <a href="newyork.html"New York City</a was

taken on October 22, 2011 with a Canon EOS 30D camera.




This will create a relative link (i.e., a link to another page in the same web site).







ADDING IMAGES







E x e r c i s e 3 . 5 — A D D I N G I M A G E S







Add the following tag to your file from the previous exercise and then test:



<img src="images/central-park.jpg" alt="Central Park" / <h3Reviews</h3

This instructs the browser to display the file central-park.jpg which is found in the images subfolder.




Modify the image tag as follows and test (be sure to move your mouse over the image).



<img src="images/central-park.jpg" alt="Central Park" title="Central Park" /



















Copyright © 2017 Randy Connolly and Ricardo Hoar
Lab 3: Introduction to HTML









The title attribute is used to display a tooltip; Internet Explorer, also displays the content of the alt attribute in a tooltip if there is no title attribute specified.




Change the src attribute to the following (i.e., add a slash before the folder name) and test.



<img src="/images/central-park.jpg" alt="Central Park"




title="Central Park" /




You will no longer see the central park image. Why? Because the root reference does not work when tested locally.




Also, depending on the browser, you may or may not see a missing image icon, as shown in Figure 3.2. Notice that all three of the browsers in the Figure 3.2 will also display the alt attribute, but Firefox does not display a missing image icon.




What would we see in Firefox if the missing <img did not have an alt attribute defined? The answer is nothing. While this makes sense perhaps from an end-user perspective, from a developer’s perspective this behavior can be frustrating. This is one of the many reasons why we strongly recommend testing your pages in multiple browsers.























































Figure 3.2 – Missing image indication in different browsers










Remove the slash added in step 3.



Add the following and then test:



<a href="images/large-central-park.jpg"




<img src="images/central-park.jpg" alt="Central Park" /




</a




This turns the Central Park image into a link (in this case, a link to a larger version of the Central Park image).



















Page 6 of 14

Fundamentals of Web Development
7













Add the following after the Central Park image:



<a href="images/large-central-park.jpg"<img src="images/central-park.jpg" alt="Central Park" title="Central Park"/</a




<pShare:




<img src="images/social/email_16.png" alt="Email this to someone" / <img src="images/social/rss_16.png" alt="Syndicated content" /

<img src="images/social/twitter_16.png" alt="Share this on Twitter" / </p

Notice that images are by default inline content in that they exist in the same flow as text.




Remove the returns between each <img tag, as shown below, and then test.



<pShare:




<img src="images/social/email_16.png" alt="Email this to someone" /<img src="images/social/rss_16.png" alt="Syndicated content" /<img src= "images/social/twitter_16.png" alt="Share this on Twitter" /




</p




Notice that the browser interprets each (or multiple ones in a row) carriage return in the HTML as a single space, as shown in Figure 3.3.


































Figure 3.3 – Carriage return treated as a space










Modify the following and test.



<pShare: <br




The <br tag adds a line break.














































Copyright © 2017 Randy Connolly and Ricardo Hoar
Lab 3: Introduction to HTML









LIST BASICS




Lists are a way of organizing information. HTML supports several different types of list: definition lists, ordered lists, and unordered lists.







EXERCISE 3.6 — MAKING A LIST







Open lab03-exercise06.html and add the following bolded text:



<body




<h1Share Your Travels</h1 <h2New York - Central Park</h2

<ul




<liDescription</li




<liReviews</li




</ul




<h3Description</h3




Remember: these labs use the convention of red bolded text to indicate content to change/enter/insert.




This will add an unordered list to your page. Notice that it is a lowercase L not the number 1 in these new tags.




Also, the indenting shown in the list above doesn’t affect the output in the browser. It is added to make the markup more readable for us, the developers.




Save and test.



Change the <ul and </ul to <ol and </ol and then test in browser. This will change the list to an ordered list.



Change the list back to an unordered list.



It is common practice to create a list of related links. The next exercise demonstrates this technique.











































Page 8 of 14

Fundamentals of Web Development
9













E x e r c i s e 3 . 7 — L I N K I N G W I T H L I S T S







Continue working with lab03-exercise06.html and add the following to the list and test:



<ul




<li<a href="#"Description</a</li




<li<a href="#"Reviews</a</li




</ul




Notice the target for the links (i.e., href="#"). The # simply indicates the current page (i.e., it goes nowhere). This is a common technique for showing links whose destinations are not yet known.




Modify the list as follows:



<ul




<li<a href="#description"Description</a</li <li<a href="#reviews"Reviews</a</li

</ul




These are now references to anchors on the existing page, which we will add in the next step.




Add the following anchors to your document as shown below.



<ul




<li<a href="#description"Description</a</li <li<a href="#reviews"Reviews</a</li

</ul




<h3 id="description"Description</h3 <pPhoto by Randy Connolly</p <pThis photo of Conservatory Pond in




<a href="http://www.centralpark.com/"Central Park</a in <a href="newyork.html"New York City</a was

taken on October 22, 2011 with a Canon EOS 30D camera. </p




<h3 id="reviews"Reviews</h3




























Copyright © 2017 Randy Connolly and Ricardo Hoar
Lab 3: Introduction to HTML









<div




<pBy Ricardo on September 15, 2012</p




<pEasy on the HDR buddy.</p




</div




Test by clicking on links in bulleted list.



You may need to shrink the vertical size of your browser to see these relative links work




.







HTML5 SEMANTIC ELEMENTS




HTML5 introduced a number of new semantic elements that can make your markup more understandable and thus easier to maintain. The next set of exercises introduces several of these elements.







E x e r c i s e 3 . 8 — H E A D E R A N D F O O T E R







Open lab03-exercise08.html and test.



Add the following and test.



<body




<header




<h1Share Your Travels</h1 <h2New York - Central Park</h2 <ul




<li<a href="#"Description</a</li <li<a href="#"Reviews</a</li

</ul




</header




You will notice that the browser does not add any formatting or spacing for the <header element. It is used purely to make our markup more understandable. Later, once we learn CSS, we can give the header a particular look.




At the end of our document, add the following and test.



<footer






















Page 10 of 14

Fundamentals of Web Development
11










<pCopyright © 2013 Share Your Travels</p




</footer




</body




</html




Like the <header element, the <footer element has no built in style.




Notice as well the © character entity, which adds the copyright symbol.




Modify the footer as follows and test.



<footer




<p<strongCopyright © 2013 Share Your Travels</strong</p </footer

The <strong element is an inline text element.




Modify the footer as follows and test.



<p<emCopyright © 2013 Share Your Travels</em</p
















E x e r c i s e 3 . 9 — N A V I G A T I O N , A R T I C L E S A N D S E C T I O N S







Open lab03-exercise09.html, add the following and test.



<header




<h1Share Your Travels</h1 <h2New York - Central Park</h2




<nav




<ul




<li<a href="#"Description</a</li <li<a href="#"Reviews</a</li




</ul




</nav




</header




<article




<section




<h3Description</h3

























Copyright © 2017 Randy Connolly and Ricardo Hoar
Lab 3: Introduction to HTML









<pPhoto by Randy Connolly</p




... [content omitted]




</p




</section




<section




<h3Reviews</h3




<div




<pBy Ricardo on September 15, 2012</p




<pEasy on the HDR buddy.</p




</div




<hr/




</section




</article




<footer




Like with the other HTML5 semantic elements, there is no special browser formatting for these elements. They are used purely to make our markup clearer.




Change the <article tags to <main tags and test,



In this example, it might make more semantic sense to use a <main element instead of <article. As you can see, it doesn’t affect what appears in the browser.
















E x e r c i s e 3 . 1 0 — F I G U R E A N D C A P T I O N S







Open lab03-exercise10.html, view in browser, then add the following to the large image and test.



<figure




<a href="images/large-central-park.jpg"<img src="images/central-park.jpg"




alt="Central Park" title="Central Park"/</a




<figcaptionConservatory Pond in Central Park</figcaption </figure

<pShare: <br/




Here’s a surprise … there is in fact a little bit of additional browser formatting for the <figure HTML5 semantic element. Also notice that we are not wrapping the share













Page 12 of 14

Fundamentals of Web Development
13










icon images in a <figure element. As discussed in the text, the <figure element should be used only for images (or other content) that is essential but whose position on the page could change. The share icons are not really essential so they are not contained within a <figure.







VALIDATING HTML




In the next exercise, we will use an external validation service to verify that our web page contains HTML that is valid according to the HTML5 DTD.







E x e r c i s e 3 . 1 1 — V A L I D A T I N G H T M L







Open a browser and go to http://validator.w3.org



In the Validate By File Upload tab, click the Browse or Choose File button and choose your lab03-exercise06.html file.



Click the Check button.



The site should eventually verify that your page is valid (as shown in Figure 3.4). You may or may not get a warning, but some of the warnings are relatively unimportant.




Remove the closing </ul element, save, and then redo steps 1-3 of this exercise.



The page will not be valid and the service may find not one but many errors. At the time of writing, the validator lists the missing </ul element as error number 10. Thus, while a validator can help you find an error in your markup, the error messages do take some interpretation.




Put the closing </ul tag back in, save, and re-validate.

















































































Copyright © 2017 Randy Connolly and Ricardo Hoar
Lab 3: Introduction to HTML




















































































Figure 3.4 – Using a validation service



















COMPLETE YOUR LAB REPORT




Open lab 03 report.doc and answer the questions based on what you learned in this lab exercise. Save your lab 1 report as lab03_yourname and submit your report via dropbox in elearning under lab 03.















































































Page 14 of 14

More products