Intro to HTML Mr. Singh.

Slides:



Advertisements
Similar presentations
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.
Advertisements

 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
CS105 Introduction to Computer Concepts HTML
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
1 Outline 3.1 Introduction 3.2 Editing HTML 3.3 First HTML Example 3.4 W3C HTML Validation Service 3.5 Headers 3.6 Linking 3.7 Images 3.8 Special Characters.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Images in HTML PowerPoint How images are used in HTML.
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
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.
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,
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
Add an Image. index.html about.html contact. html contact. html.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML: Hyptertext Markup Language Doman’s Sections.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
HTML IMAGES. CONTENTS IMG Tag Alt Attribute Setting Width and Height Of An Image Summary Exercise.
Step 1: Starting an HTML Document: Right Click: new>text document.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
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.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
HTML Basics.
Introduction to HTML:.
HTML basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
BHS Web Design Mr. Campbell
What is HTML? Acronym for: HyperText Markup Language
Computer Fundamentals 2
Images in HTML PowerPoint How images are used in HTML
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
CGS 3066: Web Programming and Design Spring 2016
Writing html for websites and blogs
WDV 101 Intro to Website Development
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
Adding Images to Your Web Page
HTML Images CS 1150 Spring 2017.
COMPUTING FUNDAMENTALS
Web Design and Development
Basic HTML and Embed Codes
Marking Up with XHTML Tags describe how a web page should look
HTML 12/27/2018.
HTML ELEMENTS Ms. Olifer.
Introduction to HTML- Basics
Introduction to XHTML Cont:.
Introduction to HTML5.
HTML Images CS 1150 Fall 2016.
Pertemuan 1b
Introduction to HTML.
Computer communications
Marking Up with XHTML Tags describe how a web page should look
HTML & CSS 7 Languages in 7 Days.
Pertemuan 1 Desain web Pertemuan 1
Marking Up with XHTML Tags describe how a web page should look
Johan Ng and Muhammad Hazzry
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
Marking Up with XHTML Tags describe how a web page should look
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

Intro to HTML Mr. Singh

HTML Basics Start your code with <!DOCTYPE html> What does this mean? This tells the browser we are using modern HTML language specifically HTML 5 or later The first tag of every page is <HTML> Every tag must be closed </HTML> HTML is a mark up language which is why we use tags <> <meta> the user doesn’t see anything but it tells the browser how to render the page

HTML Basics In our HTML code we use <meta charset=“utf-8> Just to tell the program what type of characters we will be using After you start with the HTML tag what comes next? <head> </head> This is what your website will be called

HTML Basics common tags After your<head> tag, you follow with a <title> tag to write your Website Name Most of your website will be contained in what tag? <body> tag Other tags we have are <h1>, <p>, <br> You can have multiple <h1>, <h2>, <h3>

HTML Lists What is the tag for a list> <ul> - stands for unordered list (bullet points) Every list items after that will have a tag <li> <li> stands for? List item What does <ol> stand for? Ordered list Make sure you close </> all your tags

Image HTML Which tag is used to insert an image? <img> What is an attribute? Additional information about a tag <img src> Now we need a <img src = The = sign tells the browser what the attribute value is

HTML Image In addition to img src we need to add an extra attribute. What is it? alt = “…” this describes the picture Some more attributes to an image: Width =“100” what does this mean? 100 pixels wide Height = “50”

HTML Image <img src="https://www.kasandbox.org/programmi ng-images/animals/rabbit.png" alt="Rabbit with lop ears in barn" width="203">