5.2.3 Be able to use HTML and CSS to construct web pages

Slides:



Advertisements
Similar presentations
HTML. The World Wide Web Protocols Addresses HTML.
Advertisements

Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
Web Page Development Identify elements of a Web Page Start Notepad
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
INSTRUCTIONAL SUPPORT SERVICES (ISS) SHORT COURSE, FALL 2012 UMSL Introduction to Web Page Design.
HTML Basics An Introduction to HTML. What is HTML? Stands for “Hyper Text Markup Language” Composed of “tags” which are surrounded by sideways triangles.
Hypertext Markup Language (HTML) Created by Sarah Dooley & Amanda Foster Edited and presented by Caroline Hallam September 9, 2014.
Designing Web Pages Getting to know HTML... What is HTML? Hyper Text Markup Language HTML is the major language of the Internet’s World Wide Web. Web.
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.
CS117 Introduction to Computer Science II Lecture 2 Creating an HTML Document Instructor: Li Ma Office: NBC 126 Phone: (713)
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
Creating your Webpage with tables. This is a 2 column by 1 row table!
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
HTML: Hyptertext Markup Language Doman’s Sections.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Images Worksheet. Web template Download the template folder Unzip and save in your documents Rename the folder to “images work” without quotes.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
Spiderman ©Marvel Comics Creating Web Pages (part 1)
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.
HTML Basic Structure. Page Title My First Heading My first paragraph.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
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.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Making the website. Get your folders sorted first Create a new folder in “N” called “My hockey website” Create folders inside called “Documents”, “images”
Unit 15 – Web Authoring Web Authoring Project.
Week 1: Introduction to HTML and Web Design
GCSE COMPUTER SCIENCE Communication 3.5 HTML and CSS.
What you can see in the picture?
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
Html.
HTML Basics.
LAB Work 01 MBA 61062: E-Commerce
Bell Ringer Conduct your own research & answer the following questions (1 paragraph). What is HTML? Who developed HTML? How is it used in web design?
Introduction to basic HTML
HTML GUIDE Press F5 and then
CSCI-235 Micro-Computers in Science
Uppingham Community College
Text Elements.
Chapter 1: Introduction to XHTML (part 1)
HTML Robert McIntosh
A guide to HTML.
HTML.
Working with HTML These are the examples you need to go over. Click on the name like HTML5intro.html and it will bring up the page. If you right click.
Text Elements.
Practice: first_document.html
5.2.3 Be able to use HTML and CSS to construct web pages
HTML HYPERTEXT MARKUP LANGUAGE.
Text Elements.
HTML Basic Structure.
HTML Structure.
Creating and Editing a Web Page
Creating your first website
Text Elements.
HTML & CSS 7 Languages in 7 Days.
Johan Ng and Muhammad Hazzry
Creating your first website
WJEC GCSE Computer Science
Hypertext Markup Language
Web Programming and Design
Text Elements.
Hyper text markup Language
Presentation transcript:

5.2.3 Be able to use HTML and CSS to construct web pages Learning Objectives: 5.2.3 Be able to use HTML and CSS to construct web pages

The Importance of HTML https://www.youtube.com/watch?v=HUHeiUBQrXc

Basic Structure This is the basic structure of an HTML document: <!DOCTYPE html> <html> <head> </head> <body> </body> </html> All the information about the document is placed in the head section. All the content that can be seen on screen is placed in the body section. Complete task 12.1.

<p>This is a paragraph.</p> HTML Tags HTML documents are structured using tags. Each HTML tag describes different document content. <p>This is a paragraph.</p> The example above uses the paragraph tag. HTML tag normally come in pairs. The first tag is the start tag and the second tag is the end tag. Complete task 12.2.

Folders Create a new folder called Practice Website and inside that create another folder called Images. Practice Website Images

Change the green text to the name of your website. First Page Open Notepad++ and enter the basic HTML document structure shown below: <!DOCTYPE html> <html> <head> <title>Welcome to my website</title> </head> <body> </body> </html> Change the green text to the name of your website.

Saving Save your page as index.html in your Practice Website folder. This is the standard name for the homepage of a website. Go to your Practice Website folder and double click on the index.html file to open it. You should see the title of your webpage at the top of the browser. Complete task 12.4.

Adding a Subheading Use the h2 tag to add a subheading to your web page. <html> <head> <title>Welcome to my website</title> </head> <body> <h1>Welcome to my website</h1> <h2>It rocks!</h2> </body> </html> Save your changes and refresh the page in your browser.

Adding Paragraphs Add two paragraphs relating to the subject of your website. <body> <h1>Welcome to my website</h1> <h2>It rocks!</h2> <p>Paragraph text goes here.</p> </body> Save your changes and refresh the page in your browser.

Adding Images Find an image that you would like to add to your web page and save it in your Images folder. Use the <img> tag to add the image to your web page. <h2>It rocks!</h2> <p>Paragraph text goes here.</p> <img src=“images/filename.jpg”> </body> Save your changes and refresh the page in your browser. Complete task 12.8.

Save your changes and refresh the page in your browser. External Hyperlinks Find the URL of a website that you would like to link to and add a hyperlink to it using the <a> tag. <p>Paragraph text goes here.</p> <img src=“images/filename.jpg”> <a href="http://www.bbc.co.uk">BBC Website</a> </body> Save your changes and refresh the page in your browser. Complete task 12.7.

Adding More Pages Save a copy of your webpage and save it as page2.html in your Practice Website folder. Change the headings and content of your new page. Open your index.html web page and add a hyperlink to your page2.html web page using the format shown below: <a href=“page2.html">Click here for my second page.</a> Save your changes and refresh the page in your browser.

Lists Add a bulleted list to your page2.html webpage using this format. <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> Add a numbered list to your page2.html webpage using this format. <ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> Save your changes and refresh the page in your browser. Complete tasks 12.12 and 12.13.

Line Breaks and Rules <br> <hr> Add a link break between two lines of text in your index.html page using this tag. <br> Add a horizontal rule into your index.html page using this tag. <hr> Save your changes and refresh the page in your browser. Complete tasks 12.9 and 12.10.

Sound and Video Use this tag to insert a video into one of your web pages. <video> <source src="movie.mp4“ type="video/mp4"> </video> Use this tag to insert a sound clip into one of your web pages. <audio controls> <source src="sound.mp3“ type="audio/mpeg"> </audio> Save your changes and refresh the page in your browser. Sounds and video clips can be found in RMShared / Computing / GCSE Computer Science / HTML Practice. Complete tasks 12.14 and 12.15.

Gap Fill http://www.cambridgedigital.com/mooc/html/jan14/56_Activity1/56_Activity1.html

Homework Create a poster about HTML, it needs to include: The basic structure of an HTML document An overview the basic HTML tags: <h1> <p> <img> <a> <hr> <br> http://www.studyblue.com/