SlideShare uma empresa Scribd logo
1 de 6
HTML Basics 2
1
AllanWicks2015
Workshop Preparation
1. Launch a browser
2. Open D2L at CNA-Q
3. Locate the course JohnAllanSandbox
4. Click on the CONTENT button (on the blue navigation bar)
Note: you are a student on this course
Workshop flow
There are five taskstocomplete inthisworkshop. Theyare listedbelow andcanbe accessedfromthe
JohnAllanSandbox course onDesire2Learn,inthe Table of Content. Please complete these inthisorder.
1. HTML Review Activity
2. Creating an image link
3. Attributes
4. Lists
5. CNA-Q Templates
HTML Basics 2
2
AllanWicks2015
HTML Tag Activity – Creating an Image link
In the course JohnAllanSandbox
1. Click on the CONTENT button on the navigation bar
2. Open the activity “2. Creating an Image Link”
3. Click on the CNA-Q icon
 Note: A pop up window appears. This is a real-time HTML editor. The data
is entered into the top section and the results appear below.
4. In the top section, delete all of the text, Look at the bottom section of the
page (it should appear empty)
5. Type the anchor tags. <a> </a>
6. Type the href attribute <a href=""> </a>
7. Insert the URL between the quotation marks (copy and paste it from here)
<a href="http://apps.pixlr.com/editor/"> </a>
8. Type the visible text in between the angled brackets > <
<a href="http://apps.pixlr.com/editor/">Pixlr Editor Help </a>
9. In the bottom section, click on the link, target webpage should appear as
below (please be patient as this make take a few secs.)
HTML Basics 2
3
AllanWicks2015
10.On the D2L course, delete the HTML pop up
11.Click on the CNA-Q icon to launch a new fresh HTML editor pop up
12. You are now going to set up an image from a remote website to be the link.
13.In the top section, delete the link text “Pixlr Editor Help”
<a href="http://apps.pixlr.com/editor/"> </a>
14.Insert the img tag
<a href="http://apps.pixlr.com/editor/"><img src =””></a>
15.Type or paste as text the web address of the image(picture)
<a href="http://apps.pixlr.com/editor/"><img src
=”http://www.focadoemti.com.br/wp-content/uploads/2013/08/logo-
pixlr-editor.jpg”></a>
16.In the bottom section, click on the image link, target webpage should
appear
17.Select the checkbox for the file content
18.Return to the Course Table of Contents
HTML Basics 2
4
AllanWicks2015
HTML Image Tag Activity - Attributes
In the course JohnAllanSandbox
1. Click on Table of Contents
2. Click on the CONTENT button on the navigation bar
3. Open the activity “3. Attributes”
4. Click on the CNA-Q icon at the bottom of this screen.
 Note: A pop up window appears. This is a real-time HTML editor. The data
is entered into the top section and the results appear below.
5. In the top section, delete all of the text, Look at the bottom section of the
page (it should appear empty)
6. In the top section, type or copy and paste the Image container (tags and
content)
<img src="http://bit.ly/18awjnS">
7. In the bottom section, the image should appear (it is a bit large)
8. In the top section, add width and height attributes (please type these)
<img src="http://bit.ly/18awjnS" width="128" height="128">
9. The image should appear smaller
10.Alter the dimensions until you feel the image is at a suitable size
11.Add an ALT tag to allow Screen Readers to understand the content or
purpose of the image. As well it helps with screen tips.
<img src="http://bit.ly/18awjnS" alt="HTML Icon" width="128" height="128">
12. Set the border of the image to 3 points
<img src="http://bit.ly/18awjnS" alt="HTML Icon" width="128" height="128"
border=3>
13.The image should have a bounding box or border
HTML Basics 2
5
AllanWicks2015
More HTML tags
Ordered or numbered list <ol> The ordered list tag works with the list item <li> tag
An ordered list in HTML is written as below.
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
In the course Your Sandbox
1. Click on the CONTENT button on the navigation bar
2. Click on the New button
3. Select Create a file (HTML page)
4. Type a page title “My List”
5. Click on the HTML Source Editor button
6. Click inside the body tags
7. Type <ol> </ol> to define the ordered list
8. Click within the ol tags
9. Insert three list items by typing <li> </li> <li> </li> <li> </li>
10.Type coffee, tea, milk inside of each of these li tags
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
11.Click on the Save button
An ordered or numbered list should appear
12.Click on the Publish button
13.Your D2L HTML page is saved
HTML Basics 2
6
AllanWicks2015
Unordered or bulleted list <ul>
The ordered list tag works with the list item <li> tag
An ordered list in HTML is written as below.
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
In the course Your Sandbox
1. Click on the CONTENT button on the navigation bar
2. Click on the My List document (at the bottom of the screen)
3. Click on the Edit HTML button
4. Click on the HTML Source Editor button
5. Change the <ol> </ol> tags to <ul> </ul>
6. Click on the Save button
7. A bulleted or list should appear
8. Click on the Update button

Mais conteúdo relacionado

Mais procurados

Mais procurados (19)

Twitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive OverviewTwitter Bootstrap Comprehensive Overview
Twitter Bootstrap Comprehensive Overview
 
Html
HtmlHtml
Html
 
HTML5 - create hyperlinks and anchors
HTML5 - create hyperlinks and anchorsHTML5 - create hyperlinks and anchors
HTML5 - create hyperlinks and anchors
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niaz
 
HTML Notes And Some Attributes
HTML Notes And Some AttributesHTML Notes And Some Attributes
HTML Notes And Some Attributes
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Basics of HTML
Basics of HTMLBasics of HTML
Basics of HTML
 
HTML Comprehensive Overview
HTML Comprehensive OverviewHTML Comprehensive Overview
HTML Comprehensive Overview
 
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
 
HTML + CSS Examples
HTML + CSS ExamplesHTML + CSS Examples
HTML + CSS Examples
 
Advanced dreamweaver
Advanced dreamweaverAdvanced dreamweaver
Advanced dreamweaver
 
How to Make HTML and CSS Files
How to Make HTML and CSS FilesHow to Make HTML and CSS Files
How to Make HTML and CSS Files
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Header tag
Header tagHeader tag
Header tag
 
Lesson 1: Introduction to HTML
Lesson 1: Introduction to HTMLLesson 1: Introduction to HTML
Lesson 1: Introduction to HTML
 
How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
 
Basic Html for beginners.
Basic Html for beginners.Basic Html for beginners.
Basic Html for beginners.
 

Semelhante a HTML Basics 2 workshop

Unit f adobe dreamweaver cs6
Unit f adobe dreamweaver cs6Unit f adobe dreamweaver cs6
Unit f adobe dreamweaver cs6
Krista Lawrence
 
Handout - Using Technology To Enhance Your Teaching
Handout - Using Technology To Enhance Your TeachingHandout - Using Technology To Enhance Your Teaching
Handout - Using Technology To Enhance Your Teaching
Alex Hardman
 
Joomla v-15-squeezebox-in-your-joomla-website
Joomla v-15-squeezebox-in-your-joomla-websiteJoomla v-15-squeezebox-in-your-joomla-website
Joomla v-15-squeezebox-in-your-joomla-website
RBaggio2000
 
L Hayes Online E Portfolio
L Hayes Online E PortfolioL Hayes Online E Portfolio
L Hayes Online E Portfolio
Lori
 
Web pop up javascript
Web pop up javascriptWeb pop up javascript
Web pop up javascript
AmyDoyle1
 
Tutorial1
Tutorial1Tutorial1
Tutorial1
hstryk
 
6 Special Howtos for Drupal
6 Special Howtos for Drupal6 Special Howtos for Drupal
6 Special Howtos for Drupal
Wingston
 
User manual salman alam and kyubin han
User manual   salman alam and kyubin hanUser manual   salman alam and kyubin han
User manual salman alam and kyubin han
Kyubin Han
 
How to Build a Great Class Website Using Weebly
How to Build a Great Class Website Using WeeblyHow to Build a Great Class Website Using Weebly
How to Build a Great Class Website Using Weebly
mrmacmillan
 

Semelhante a HTML Basics 2 workshop (20)

Unit f adobe dreamweaver cs6
Unit f adobe dreamweaver cs6Unit f adobe dreamweaver cs6
Unit f adobe dreamweaver cs6
 
Handout - Using Technology To Enhance Your Teaching
Handout - Using Technology To Enhance Your TeachingHandout - Using Technology To Enhance Your Teaching
Handout - Using Technology To Enhance Your Teaching
 
Joomla v-15-squeezebox-in-your-joomla-website
Joomla v-15-squeezebox-in-your-joomla-websiteJoomla v-15-squeezebox-in-your-joomla-website
Joomla v-15-squeezebox-in-your-joomla-website
 
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog TemplateBP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
BP304 - Blog It Up, Baby! Extending the new IBM Lotus Domino Blog Template
 
Master page
Master pageMaster page
Master page
 
L Hayes Online E Portfolio
L Hayes Online E PortfolioL Hayes Online E Portfolio
L Hayes Online E Portfolio
 
Web pop up javascript
Web pop up javascriptWeb pop up javascript
Web pop up javascript
 
Blog Instructions
Blog InstructionsBlog Instructions
Blog Instructions
 
SYSTEMS DESIGN / CAPSTONE PROJECT
SYSTEMS DESIGN / CAPSTONE PROJECTSYSTEMS DESIGN / CAPSTONE PROJECT
SYSTEMS DESIGN / CAPSTONE PROJECT
 
Drupal Gardens Tutorial 1 of 4
Drupal Gardens Tutorial 1 of 4Drupal Gardens Tutorial 1 of 4
Drupal Gardens Tutorial 1 of 4
 
blogs911.com
blogs911.comblogs911.com
blogs911.com
 
Tutorial1
Tutorial1Tutorial1
Tutorial1
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
6 Special Howtos for Drupal
6 Special Howtos for Drupal6 Special Howtos for Drupal
6 Special Howtos for Drupal
 
OS3 Training and Resource Guide
OS3 Training and Resource GuideOS3 Training and Resource Guide
OS3 Training and Resource Guide
 
User manual salman alam and kyubin han
User manual   salman alam and kyubin hanUser manual   salman alam and kyubin han
User manual salman alam and kyubin han
 
How to Build a Great Class Website Using Weebly
How to Build a Great Class Website Using WeeblyHow to Build a Great Class Website Using Weebly
How to Build a Great Class Website Using Weebly
 
Webinar: Front End Web Development - Trendy Web Designs Using HTML5
Webinar: Front End Web Development - Trendy Web Designs Using HTML5Webinar: Front End Web Development - Trendy Web Designs Using HTML5
Webinar: Front End Web Development - Trendy Web Designs Using HTML5
 
Copycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastCopycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fast
 
Polytechnic 1.0 Granada
Polytechnic 1.0 GranadaPolytechnic 1.0 Granada
Polytechnic 1.0 Granada
 

Mais de John Allan

Mais de John Allan (20)

Google Earth BCTEAL2023
Google Earth BCTEAL2023Google Earth BCTEAL2023
Google Earth BCTEAL2023
 
ChatGPT Prompt Tips
ChatGPT Prompt TipsChatGPT Prompt Tips
ChatGPT Prompt Tips
 
Repurposing H5Ps
Repurposing H5PsRepurposing H5Ps
Repurposing H5Ps
 
Moodle Accessibility Tools
Moodle Accessibility ToolsMoodle Accessibility Tools
Moodle Accessibility Tools
 
Google Earth Voyager How To
Google Earth Voyager How ToGoogle Earth Voyager How To
Google Earth Voyager How To
 
Playing Geoguessr
Playing GeoguessrPlaying Geoguessr
Playing Geoguessr
 
How-T0 Immersive reader Office365
How-T0 Immersive reader Office365How-T0 Immersive reader Office365
How-T0 Immersive reader Office365
 
How To Microsoft Immersive Reader for Word2019
How To Microsoft Immersive Reader for Word2019How To Microsoft Immersive Reader for Word2019
How To Microsoft Immersive Reader for Word2019
 
Xreading Teacher Start up
Xreading Teacher Start upXreading Teacher Start up
Xreading Teacher Start up
 
H5P Interactive Book Overview
H5P Interactive Book OverviewH5P Interactive Book Overview
H5P Interactive Book Overview
 
H5P Reuse Feature with LUMI
H5P Reuse Feature with LUMIH5P Reuse Feature with LUMI
H5P Reuse Feature with LUMI
 
H5P Structure Strip Tool with LUMI
H5P Structure Strip Tool with LUMIH5P Structure Strip Tool with LUMI
H5P Structure Strip Tool with LUMI
 
H5P Dictation Tool LUMI
H5P Dictation Tool LUMIH5P Dictation Tool LUMI
H5P Dictation Tool LUMI
 
H5P Sort Paragraph using LUMI
H5P Sort Paragraph using LUMIH5P Sort Paragraph using LUMI
H5P Sort Paragraph using LUMI
 
PLN Workshop
PLN WorkshopPLN Workshop
PLN Workshop
 
Practice Accessibility Worksheet
Practice Accessibility WorksheetPractice Accessibility Worksheet
Practice Accessibility Worksheet
 
Accessibility worksheet
Accessibility worksheetAccessibility worksheet
Accessibility worksheet
 
Qatar University Conference 2021 Interactive video W/ H5P Slides
Qatar University Conference 2021 Interactive video W/ H5P SlidesQatar University Conference 2021 Interactive video W/ H5P Slides
Qatar University Conference 2021 Interactive video W/ H5P Slides
 
Video Editing Basics for Teachers
Video Editing Basics for TeachersVideo Editing Basics for Teachers
Video Editing Basics for Teachers
 
Audio Editing Basics with Audacity 2021
Audio Editing Basics with Audacity 2021Audio Editing Basics with Audacity 2021
Audio Editing Basics with Audacity 2021
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Último (20)

Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 

HTML Basics 2 workshop

  • 1. HTML Basics 2 1 AllanWicks2015 Workshop Preparation 1. Launch a browser 2. Open D2L at CNA-Q 3. Locate the course JohnAllanSandbox 4. Click on the CONTENT button (on the blue navigation bar) Note: you are a student on this course Workshop flow There are five taskstocomplete inthisworkshop. Theyare listedbelow andcanbe accessedfromthe JohnAllanSandbox course onDesire2Learn,inthe Table of Content. Please complete these inthisorder. 1. HTML Review Activity 2. Creating an image link 3. Attributes 4. Lists 5. CNA-Q Templates
  • 2. HTML Basics 2 2 AllanWicks2015 HTML Tag Activity – Creating an Image link In the course JohnAllanSandbox 1. Click on the CONTENT button on the navigation bar 2. Open the activity “2. Creating an Image Link” 3. Click on the CNA-Q icon  Note: A pop up window appears. This is a real-time HTML editor. The data is entered into the top section and the results appear below. 4. In the top section, delete all of the text, Look at the bottom section of the page (it should appear empty) 5. Type the anchor tags. <a> </a> 6. Type the href attribute <a href=""> </a> 7. Insert the URL between the quotation marks (copy and paste it from here) <a href="http://apps.pixlr.com/editor/"> </a> 8. Type the visible text in between the angled brackets > < <a href="http://apps.pixlr.com/editor/">Pixlr Editor Help </a> 9. In the bottom section, click on the link, target webpage should appear as below (please be patient as this make take a few secs.)
  • 3. HTML Basics 2 3 AllanWicks2015 10.On the D2L course, delete the HTML pop up 11.Click on the CNA-Q icon to launch a new fresh HTML editor pop up 12. You are now going to set up an image from a remote website to be the link. 13.In the top section, delete the link text “Pixlr Editor Help” <a href="http://apps.pixlr.com/editor/"> </a> 14.Insert the img tag <a href="http://apps.pixlr.com/editor/"><img src =””></a> 15.Type or paste as text the web address of the image(picture) <a href="http://apps.pixlr.com/editor/"><img src =”http://www.focadoemti.com.br/wp-content/uploads/2013/08/logo- pixlr-editor.jpg”></a> 16.In the bottom section, click on the image link, target webpage should appear 17.Select the checkbox for the file content 18.Return to the Course Table of Contents
  • 4. HTML Basics 2 4 AllanWicks2015 HTML Image Tag Activity - Attributes In the course JohnAllanSandbox 1. Click on Table of Contents 2. Click on the CONTENT button on the navigation bar 3. Open the activity “3. Attributes” 4. Click on the CNA-Q icon at the bottom of this screen.  Note: A pop up window appears. This is a real-time HTML editor. The data is entered into the top section and the results appear below. 5. In the top section, delete all of the text, Look at the bottom section of the page (it should appear empty) 6. In the top section, type or copy and paste the Image container (tags and content) <img src="http://bit.ly/18awjnS"> 7. In the bottom section, the image should appear (it is a bit large) 8. In the top section, add width and height attributes (please type these) <img src="http://bit.ly/18awjnS" width="128" height="128"> 9. The image should appear smaller 10.Alter the dimensions until you feel the image is at a suitable size 11.Add an ALT tag to allow Screen Readers to understand the content or purpose of the image. As well it helps with screen tips. <img src="http://bit.ly/18awjnS" alt="HTML Icon" width="128" height="128"> 12. Set the border of the image to 3 points <img src="http://bit.ly/18awjnS" alt="HTML Icon" width="128" height="128" border=3> 13.The image should have a bounding box or border
  • 5. HTML Basics 2 5 AllanWicks2015 More HTML tags Ordered or numbered list <ol> The ordered list tag works with the list item <li> tag An ordered list in HTML is written as below. <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> In the course Your Sandbox 1. Click on the CONTENT button on the navigation bar 2. Click on the New button 3. Select Create a file (HTML page) 4. Type a page title “My List” 5. Click on the HTML Source Editor button 6. Click inside the body tags 7. Type <ol> </ol> to define the ordered list 8. Click within the ol tags 9. Insert three list items by typing <li> </li> <li> </li> <li> </li> 10.Type coffee, tea, milk inside of each of these li tags <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> 11.Click on the Save button An ordered or numbered list should appear 12.Click on the Publish button 13.Your D2L HTML page is saved
  • 6. HTML Basics 2 6 AllanWicks2015 Unordered or bulleted list <ul> The ordered list tag works with the list item <li> tag An ordered list in HTML is written as below. <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> In the course Your Sandbox 1. Click on the CONTENT button on the navigation bar 2. Click on the My List document (at the bottom of the screen) 3. Click on the Edit HTML button 4. Click on the HTML Source Editor button 5. Change the <ol> </ol> tags to <ul> </ul> 6. Click on the Save button 7. A bulleted or list should appear 8. Click on the Update button