560 likes | 666 Views
Using Hyper Text Markup Language to develop a Web page. Objectives. Define vocabulary of HTML and use words to make tags. Define key HTML tags and implement them in source code. Create Web page using Notepad and view it in Browser. Objectives.
E N D
Using Hyper Text Markup Language to develop a Web page
Objectives • Define vocabulary of HTML and use words to make tags. • Define key HTML tags and implement them in source code. • Create Web page using Notepad and view it in Browser.
Objectives • Explore and Master Lewis and Clark’s journey by research, cooperative work, and writing.
Journal Entries (5) • Geography • Climate • Science (animals, plants) • Co-explorers • Native Americans
Journal Pictures (2) • Choose 2 areas from above. • Make 2 pictures for journal entries.
Journal Pictures (2) When scanning or saving an image, abide by the following protocols: • The image must be saved as a JPEG format only. • All images must be saved with the extension .jpg • Your first image should be called yourname1.jpg. The second image yourname2.jpg.
Journal Pictures (2) • All measurement is pixels only. • If the image is horizontal (or landscape format), it must be cropped to no more than 700 pixels wide. • If the image is vertical (or portrait format), it must be cropped to no more than 350 pixels wide.
Journal Pictures (2) • The resolution is set to 72 DPI only • The color format is RGB or Grayscale only
Sources (7) • One source for each journal entry (5) • One source for each picture (2) • Sources cannot be duplicated. • Sources must be from academically acceptable websites.
ogin l
Vocabulary • URL---Universal resource locater or address of a Web site. This is the URL
Vocabulary • HTML---Hyper Text Markup Language.
Vocabulary • HTML---Hyper Text Markup Language.
Vocabulary • Link---A clickable element that “links”
Vocabulary • Link---A clickable element that “links” or connects a page to another page within the same Web site.
Vocabulary • Link---A clickable element that “links”, or connects, a page to another page within the same Web site.
Vocabulary • Hyperlink--Connects a page to Web.
Vocabulary • Hyperlink--A clickable element that “links” or connects a page to another page on the World Wide Web.
For example, <html> tells the browser that this code is comprised of hyper text markup language. Vocabulary • Tag---Code that instructs the browser to do a task. <html>
Lower case for all coding. • Lower case for all file names. • OK to use/upper/lower case for content
Make a new folder on your desktop • Name it using your first name and last intitial only.pauls, for example.
Go to the following website: • http//:carversville.com/us1 • Locate your class (a12, a34, a78) • Locate your directory.
Click on your directory • Right click on the your page
Open Notepad. • Paste the code from your webpage into the Notepad file. • Save the Notepad file as index.html to your directory.
Save the image to the same directory of your .html file. • Drag the image to a browser.
Now, go back to your Notepad file. • Find the following code:<imgsrc=“images/yourname.jpg"> • Paste the URL and replace images/yourname.jpg. • Save, refresh browser.
Now, go back to your Notepad file. • Find the following code:<imgsrc=“images/yourname.jpg"> • Paste the URL and replace images/yourname.jpg. • Save, refresh browser. • <marquee scroll ="infinite" direction="left"> • </marquee>
Building Pages • A simple program—Notepad—used to make Web pages
Building Pages • Open Notepad.
Building Pages • Open Notepad. • Type the following HTML tag exactly as shown:
Building Pages • Open Notepad. • Type the following HTML tag exactly as shown: <html>
Building Pages • Type the following HTML tag exactly as shown: <head>
Building Pages • Type the following HTML tag exactly as shown: <title>
Building Pages • Type the following words (you may substitute your own words): My First Web Page
Building Pages • Type the following HTML tag exactly as shown: </title>
Building Pages • Type the following HTML tag exactly as shown: </title> Notice the “front slash” / before the word title.
Building Pages • Type the following HTML tag exactly as shown: </title> The “front slash” / tells the browser to stop a function. In this case the function is to put a title in the very top of a browser page.
Building Pages • Type the following HTML tag exactly as shown: </head>
Building Pages • Then: press enter
Building Pages • Type the following HTML tag exactly as shown: <body>
Building Pages • Type the following HTML tag exactly as shown: <font face=“Arial” color=“black” size=“3”> This tells the browser text is following: The text is Arial, the color is black and the size is 3 on scale of 1-7.
Building Pages • Type the following words (you may substitute your own words): This is my first Web page. Welcome!