Hyper text markup Language

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
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,
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Creating a web page Lab Assignment Goal Create a simple web page Create the file: inclass.txt in your www directory. Do you remember how to get to your.
How can basic HTML sites be improved?. The Difference Between Hyper Text Markup Language Is a markup language for describing web pages Is used to create.
Basic XHTML Module 2: XHTML Basics LESSON 1. Module 2: XHTML Basics LESSON 1 Lesson Overview In this lesson, you will learn to:  Write XHTML code using.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Create Lists  Horizontal rule (line)  Create a page for.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
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.
HTML Structure & syntax
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.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
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.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Write HTML code using a text editor application such as.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
HTML Basics Let’s Make a Web Page. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a.
HTML Lesson 3 Hyper Text Markup Language. Assignment Part 2  Set the file name as “FirstName2.htm”  Set the title as “FirstName LastName First Web Site”
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Web programming Part 1: HTML 由 NordriDesign 提供
Basic HTML. Lesson Overview In this lesson, you will learn to:  Write HTML code using a text editor application such as Notepad.  View Web pages created.
This shows CIS17 and the first day introduction..
HTML: Hypertext Markup Language The language to make web pages 0.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
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-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
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.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
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.
HTML Structure & syntax
ECS – Storyboarding and Introduction to Web Design
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Transcriptions Studio Workshop Fall 2006
Introduction to basic HTML
Web Design and Development
Hyper text markup Language
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
5.2.3 Be able to use HTML and CSS to construct web pages
HTML HYPERTEXT MARKUP LANGUAGE.
What is HTML?.
Introduction to HTML5.
Introduction to HTML.
LESSON 1 Module 2: XHTML Basics Basic XHTML.
HTML Basic Structure.
HTML Structure.
Creating your first website
HyperText Markup Language
HTML Structure & syntax
Hyper text markup Language
Presentation transcript:

Hyper text markup Language Basic HTML Hyper text markup Language

Lesson Overview In this lesson, you will learn to: Write HTML code using a text editor application such as Notepad++. View Web pages created with HTML code. Create a title within an HTML document. Format text within a Web page. Creates tags with attributes. Text alignment and horizontal ruler Ask one kid to sketch what other kids describe (magazine page that sketcher can’t see) Look at result—shortcomings? Sketch is probably not super-accurate Need a very specific, accurate page description language—HTML

Creating Web Sites Open a simple text editor: We’ll use Notepad++

Class assignment 1 HTML tag header

Type this code into a Notepad++ document: <html> <head> <title>Tags and Attributes</title> </head> <body> <h1>This tag creates large text</h1> <h2>Creates a slightly smaller text </h2> <h3>Is smaller yet, but still large</h3> <h4>Starts getting smaller</h4> <h5>Now the text is getting small</h5> <h6>And finally, this is the smallest</h6> </body> </html>

Create an HTML file Create a folder “Web Design” on your computer’s fileshare Create a folder “class assignments” Save the code that you just created as “tags2_1_16.html” in the folder “class assignments” The extension .html designates a file to be opened by a browser Access the file and open it. What do you see?

Class assignment 2 HTML tag paragraph

Type this code in a notepad document <html> <head> <title>Tags and Attributes</title> </head> <body> <p>This is a paragraph</p> <p>This is a second paragraph.</p> <p>This is my last paragraph</p> </body> </html>

Create an HTML file Save the code that you just created as “assignment2para.html” in the folder “Web design\class assignments” Access the file and open it. What do you see?

Class assignment 3 HTML tag paragraph and header

Open notepad++ Using the header and paragraph html tags that you have learnt in assignment 1 and assignment 2 create the web page shown next Save the code that you just created as “twocities.html” in the folder “Web design\class assignments” Access the file and open it Debugging tip: save html file in notepad. Use refresh (F5) button on your browser to see changes in code

Breaks and paragraphs <p> … </p> creates a block or paragraph of text. <br/> creates a new line. It is an opening and closing element in one, as designated by the slash at the end. <br/> vs. <p> … </p> It is common convention that breaks live in paragraphs, but when do you use each?

Class assignment 4 HTML tag line breaks and paragraphs

Type this code in a notepad document(please include header and html tags) <body> <p>This is first paragraph with break<br/> This is a second paragraph with break<br/> This is my last paragraph with break</p> <p>This is first paragraph</p> <p>This is a second paragraph</p> <p>This is my last paragraph</p> </body>

Class assignment 5 HTML tag line breaks, paragraphs and header

Open notepad++ Using the header paragraph and break html tags that you have learned, create the web page shown next Save the code that you just created as “charles.html” in the folder “Web design\class assignments” Access the file and open it. Debugging tip: save html file in notepad. Use refresh (F5) button on your browser to see changes in code.