HTML basics http://www.w3schools.com/.

Slides:



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

Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML Structure & syntax
1 Essential HTML coding By Fadi Safieddine (Week 2)
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
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.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
HTML IMAGES. CONTENTS IMG Tag Alt Attribute Setting Width and Height Of An Image Summary Exercise.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
Chapter 1: Intro to HTML Section 1: HTML Structure Presentation Section 2: Layout of an HTML File Section 3: Working with Lists & Tables Section 4: HTML.
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.
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
Web Development Part 1.
BHS Web Design Mr. Campbell
Midterm Review.
Images in HTML PowerPoint How images are used in HTML
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
HTML.
Internet & Web Engineering Course Code:CS-228 Credit Hours (3+1) Lab 1 Introduction to Markup Language HTML Instructor: Muhammad Zeeshan Haider.
HTML Images CS 1150 Spring 2017.
COMPUTING FUNDAMENTALS
Computers and Scientific Thinking David Reed, Creighton University
Basic HTML and Embed Codes
HTML 12/27/2018.
Introduction to HTML5.
HTML Basics Web.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
HTML Images CS 1150 Fall 2016.
Pertemuan 1b
HTML Basic Structure.
HTML Structure.
Introduction to HTML.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Introduction to HTML Lecture 1 Kanida Sinmai
Web Application Development
Basic HTML Workshop.
HTML – The COMPUTING UNLOCKED GUIDE
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
Johan Ng and Muhammad Hazzry
AN INTRODUCTION BY FAITH BRENNER
Creating your website and learning HTML
HTML Introduction.
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

HTML basics http://www.w3schools.com/

HTML: Hyper Text Markup Language

Think of HTML Tags as Fancy Parentheses X = ( ( ( 5+5 ) ) ( ( ( 2+8 ) ( 7+3 ) ) ) ) X = ( ( ( 5+5 ) ) ( ( ( 2+8 ) ( 7+3 ) ) ) ) <!DOCTYPE html> <html> <head> <title> 5+5 </title> </head> <body> <div> <p> 2+8 </p> <p> 7+3 </p> </div> </body> </html> <!DOCTYPE html> <html> <head> <title>5+5</title> </head> <body> <div> <p>2+8</p> <p>7+3</p> </div> </body> </html> <!DOCTYPE html> <html> <head> <title>5+5</title> </head> <body> <div> <p>2+8</p> <p>7+3</p> </div> </body> </html> <!DOCTYPE html> <html> <head> <title>5+5</title> </head> <body> <div> <p>2+8</p> <p>7+3</p> </div> </body> </html>

Structure of HTML files The text between <html> and </html> describes an HTML document The text between <head> and </head> provides information about the document The text between <title> and </title> appears in the browser tab The text between <body> and </body> describes the visible page content HTML tags normally come in pairs The first tag in a pair is the start tag, the second tag is the end tag The end tag is written like the start tag, but with a slash before the tag name The start tag is often called the opening tag. The end tag is often called the closing tag.

Commonly used tags HTML headings are defined with the <h1> to <h6> tags H1 being the largest HTML paragraphs are defined with the <p> tag Text font modifiers <b> bold </b> <u> underline </u> <i> italicize </i> HTML links are defined with the <a> tag: The link's destination is specified in the href attribute.  Attributes are used to provide additional information about HTML elements. <a href="http://www.w3schools.com">This is a link</a> HTML images are defined with the <img> tag. The source file (src), alternative text (alt), and size (width and height) are provided as attributes: <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">