Week 33& 34 Module
In this lesson, the tile focuses on understanding the Web. We will cover the following objectives:
Explain the World Wide Web
Contrast the Internet and the World Wide Web
Explain the parts of an URL
Explain Web navigation tools
Describe how to customize a web browser
Explain the difference between a subject guide and a search engine.
Compare and contrast methods of e-commerce
Identify reasons for the success of e-commerce
Discuss how e-postage works to deliver postage across the internet.
Additionally, we will learn how to code in HTML. Students will add sections to their existing webpages using HTML code.
Chapter 29 Google Slides
Review Fundamentals of Creating a Website.
The vocabulary that will be covered will be:
Cascading Style Worksheets
Graphical Browser
Home Page
Hypertext Markup Language
Hypertext Transfer Protocol
Style Sheet
Tag
Web Page
Web Server
Web Site
World Wide Web
Back button
Cookie
Forward Button
Knowledge Base
Navigation Button
Tracking
E- Commerce
Online Banking
Intro to HTML Coding
In the very first lesson of learning HTML Code, you will learn that HTML consist of opening and closing tags. There are a variety of tags that serve different purposes. The content inside an HTML Code are called elements. For example, The <h1> </h1> tags are meant for headings or titles. (Please see the description below.) If I were, for example, to create a website on Artificial Intelligence. I would code the title this way <h1> Artificial Intelligence </h1> After this, I would use the <div> to create space between the title and the paragraphs. To write a paragraph, I would start with the tag <p> and when I finish the paragraph, I would end with the closing tag</p>. To create space for my next paragraph, I would use the closing tag </div> and then an opening tag <div>. This would indicate that I am done with the first paragraph and I ready for the second. The last item for the first lesson is to add a link. To add a link use the following opening and closing tags:
<a ref="Codeacademy.com" Code Academy></a>
<h1>Biography</h1>
<div>
<p>Hello, my name is Raul Cisneros. I am a certified teacher. I enjoy teaching Math and Principles of Information Technology.</p>
</div>
<div>
<p> Here are some of my favorite websites.</p>
</div>
<a href="http://codeacademy.com">Code Academy<a/>
End Result is the following:
Biography
Hello, my name is Raul Cisneros. I am a certified teacher. I enjoy teaching Math and Principles of Information Technology.
Here are some of my favorite websites.











