HTML.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

What happens when you create an HTML document and include pictures.
Introduction to HTML Lists, Images, and Links. Before We Begin Save another file in Notepad Save another file in Notepad Open your HTML, then do File>Save.
Web Page Development Identify elements of a Web Page Start Notepad
Introduction to HTML. What is a Web site? A collection of "pages" or files linked together and available on the World Wide Web What do you need to create.
Web Development 311 Fall : Fall Why web pages? Most companies have intranets, extranets, and web sites Content can be changed quickly and.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
Did someone say Music? November 7, Adding MUSIC to a web page: 1. Find your music! 2. A good website is 3. You will.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Tutorial #2 Creating Links. Tutorial #1 Review Basic Page (DOCTYPE, HTML, Head, Title, Body) Tags Structure( ),,,,,, Nested Tags content Tag Attributes.
Creating Web Documents Wk 2: HTML & PSP basics Discuss sites HTML, PSP lesson Assignment: first Web page due Day class: 1/23; Night class 1/28.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Lesson 9: Using Excel with the Internet Microsoft Office Excel 2003 Lesson 9 Using Excel with the Internet.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Processing.js.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Enhancing Your Web Site—Adding Links Web Page **YOU MUST HAVE COMPLETED THE 1ST 3 WEB PAGES BEFORE YOU CAN DO THIS ONE. **YOU SHOULD HAVE COMPLETED THE.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
 HTML is hypertext markup language. It is a way for people to display their information with more complex pictures and text displays. Before HTML, messages.
HTML: Images and Links Many Thanks to “Joe,” at index.html, from whom I got these lessons!
HTML. Adding Background Color The bgcolor attribute lets you change the background color of the Web page. Located in the body tag See common Web Page.
Images Worksheet. Web template Download the template folder Unzip and save in your documents Rename the folder to “images work” without quotes.
Welcome to the Circus! A step by step process to making your own Google Site for the NEW Northern Potter Website!
M Dixon 1 Tech HTML. M Dixon 2 Admin Attendance Register: –log in to your profile.
Mark Dixon Page 1 Soft – HTML. Mark Dixon Page 2 Admin Attendance Register: –log in to your profile.
Mark Dixon Page 1 Tech – HTML. Mark Dixon Page 2 Admin Attendance Register: –log in to your profile.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
A New Page to Add-On Your Multimedia Page. Creating a New Page Open up a new Windows Notepad Click File > Save As > My Computer > “your flash drive” Name.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Assignment 3 Your going to modify your last Best Movies page and Recipe page Your going to modify your last Best Movies page and Recipe page You will need.
HINDU STYLE PORTFOLIO TEMPLATE
This shows CIS17 and the first day introduction..
Links and Images. Links HTML uses a hyperlink to link to another document on the Web A hyperlink can be either text or a picture Links are created with.
HTML Lesson 2. Internal Hyperlinks  Internal Hyperlink is a link that links to another page within a website.  Make another page using notepad++: page2.html.
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
Lists Ordered Unordered. List Components  OR  Plus Star Wars Avatar Vacation.
Introduction to HTML Hypertext Mark-up Language. HTML HTML = Hypertext Mark-up Language Is just plain simple text marked up by “tags” You can create a.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
ENHANCE YOUR WEBSITE. HOW TO INSERT COLOR??? USE THE TAG: GO TO PICK COLOR WANT BY POINTING: THEN USE THE HEX NUMBER.
Revised June 2008 Online PD Basic HTML1 Let’s Try It!  Open Notepad oStart > All Programs > Accessories > Notepad oDon’t get WordPad by mistake – won’t.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Connecting From Home Editing at Home(You don’t have to.)
What you can see in the picture?
Let’s Try It! Open Notepad
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML:.
HTML Lesson 2.
HTML Lesson 3.
HTML Robert McIntosh
Adding Images to Your Web Page
Essentials of HTML.
HTML.
Enhance your website.
Essentials of HTML.
Websites lesson 5.
Nerd Website HTML.
HTML Links.
Enhancing Your Web Site—Adding Links Web Page
HTML Structure.
Lesson 7 Graphics.
HTML Lesson 4.
Did someone say Music? January 23, 2019.
Let's create your English Folder!.
Presentation transcript:

HTML

What you’ll learn today Link to a different page of your site Link to a different web sites More about attributes and elements Using photoshop to scale images Link to a picture Thumbnails (small picture links to a big picture) Email link

Links to a different web page in your site Make another page using notepad: page2.html Here’s how to connect (link) your pages together On page1.html type the following tag <a href=“page2.html”> Click here for the next page </a> Words that show up as A link on the page The link tag The page to jump to

Link to a different web site (like google) On your web page in notepad type: < a href=“http://www.google.com”> Click here for google </a> What’s the difference between this and a link to another page in your site? Words that show up as a link on the page The site to jump to The link tag

Attributes and Elements extra bits of information inside a tag. <img src=“name picture“ / > <body bgcolor=“red” > <a href=“page2.html”> I’m a link </a> Elements Another name for the begin and end tag and everything in between Everything that is in-between and includes the <body> and </body> tags is the body element. <title> and </title> are tags, BUT <title>Rumple Stiltskin</title> is a title element.

Some other useful links you might want to make Links to a picture(click on words and open a picture) < a href=“picture.jpg”> Click here to see my picture </a> Thumbnail (click on small pic to open big pic) < a href=“BigPicture.jpg”> <img src = “SmallPic.jgp” /> </a> Email Links < a href=“mailto:jhubbard@yahoo.com”> Email me </a>

Let’s Use this stuff - LINKS! Make a second page for your site by opening notepad and creating page2.html (file-> new, file -> save as) Add all the required tags (what are they) Add a title and a comment to your page Open the first page and add a link called “Page 2”. When you click on this link, it should open the second page Open the second page and add a link called “Click Here to See My First Page”. When you click on this link, it should open your first page On the second, create a link that opens a picture. For example, if your second page is about music bands, you can have the words “see the band”open a picture of the band. Don’t forget to download the picture into your project folder. Create a thumbnail. Use photoshop to make a small version of your picture. Put the small picture on your second page and when you click on it, make a big version of the same picture open. On your first page, add an email link Make the words “Email me” send an email to “slewis@Marietta-city.k12.ga.us”