Essentials of HTML.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
HTML Basics Customizing your site using the basics of HTML.
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Introduction to HTML & CSS
HTML Lesson 4 Hyper Text Markup Language. Assignment Part 3  Save your last html file as “FirstName3.htm”  Set the title as “FirstName LastName Third.
HTML: HyperText Markup Language Hello World Welcome to the world!
MIS 425 Lecture 2 – HTML Navigation, Colors, tables and Styles Instructor: Martin Neuhard
Using Advanced Cascading Style Sheets
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
Chapter 8 Creating Style Sheets.
How Tags are used to form your Web Page
COMP101 – Exploring Multimedia and Internet Computing LA2 (Thu 14:00 – 16:50) TA: Jackie Lo.
4.01 Cascading Style Sheets
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
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.
Creating Tables in a Web Site Using an External Style Sheet
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.
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.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
Web Design I Spring 2009 Kevin Cole Gallaudet University
HTML Overview Part 4 – Tables 1. HTML Tables  Tables are defined with the tag pair.  A table is divided into rows with tag pairs. o tr stands for "table.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
CHAPTER 1 HTML & HTML5 I อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
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.
HTML CSS JAVASCRIPT. HTML - Stands for Hyper Text Markup Language HTML is a ‘language’ that describes web pages. This language is a collection of codes.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
The Teacher HTML HTML (3) Cascading Style Sheets.
Learning HTML Presented By: Wayne Helle What Is HTML? Learning Basic Tags... Formating Your Text... Working With Images and Links... Simple Form Boxes..
HTML: Hyptertext Markup Language Doman’s Sections.
Professor Waterman Cascading Style Sheets (CSS) is a language that works with HTML documents to define the way content is presented. The presentation.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
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”
Georgia Institute of Technology Making Text for the Web Barb Ericson Georgia Institute of Technology March 2006.
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.
Quick Questions 1. What does HTML stand for? 2. What are the three main languages of the Web? 3. What is the purpose of the tags? 4. Why do we indent different.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Cascading Style Sheets
Spiderman ©Marvel Comics Creating Web Pages (part 1)
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
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.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Creating Web Pages with Links, Images, and Embedded Style Sheets
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.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
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.
Cascading Style Sheets (CSS). Learning Objectives To develop an understanding of how CSS can enhance the design of a webpage To create and apply CSS styling.
Week 1: Introduction to HTML and Web Design
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
4.01 Cascading Style Sheets
HTML Lesson 3.
HTML.
Essentials of HTML.
5.2.3 Be able to use HTML and CSS to construct web pages
Basic HTML and Embed Codes
Web Design and Development
Lesson 4 – Introduction to CSS
BUILDING A WEBSITE 7.4.2: Basics of HTML and CSS.
HTML – The COMPUTING UNLOCKED GUIDE
Johan Ng and Muhammad Hazzry
Creating your first website
4.01 Cascading Style Sheets
Creating your website and learning HTML
Presentation transcript:

Essentials of HTML

Lesson Objectives: 01 02 03 04 05 06 Continue learning HTML Revise HTML Structure Adding images Linking Pages Adding Tables Adding Color

Brian Strom : - 2minutes Add all the tags which you learned in HTML

1. Add Images

Adding image Image from computer Image from folder Image from web

Adding image from the Device In HTML, images are defined with the <img> tag and does not have a closing tag Image Syntax <img src=“zayed.jpg" alt=“shk zayed" style="width:128 ;height:128"> <img src=“zayed.jpg" alt=“shk zayed" width = “128” height=”128">

2. Adding image from the Device Image Syntax <img src=“foldername/imagename.jpg” > <img src=“images/zayed.jpg" alt=“shk zayed" style="width:128 ;height:128"> <img src=“images/zayed.jpg" alt=“shk zayed" width = “128” height=”128">

3. Adding image from a link Image Syntax <img src="https://www.moe.gov.ae/Ar/MediaCenter/News/PublishingImages/ zayed.JPG" alt="shaikh zayed.com" width = "300" height="250” >

Open NotePad++ and follow step by step to accomplish the activity. Practical P-84-85 Open NotePad++ and follow step by step to accomplish the activity.

Task Sheet Open NotePad++ - and write main html tags head & body Completed Not Completed 1 Open NotePad++ - and write main html tags head & body 2 Save your file as “Lesson7-Name.html “ 3 Add a Title for your page ( Zayed in our heart ) 4 Add h1 heading “Year 2018 – Year of Zayed “ 5 Add 2 breaks after the above heading 6 Add a comment “ image of zayed” after the breakes 7 Add an image from your folder “zayed2018.jpg”

2. Links

Links To link two or more HTML documents together. 1. Hyper Links You can click on a link and jump to another document. Syntax <a href="https://www.w3schools.com/html/"> Visit our HTML tutorial </a>

Links 2. Links to another page in the same html folder Syntax <a href=“page2.html"> Next Page </a>

Task Sheet No Task Completed Not Completed 8 Add a link to “ https://government.ae/en/ “ Government of UAE. 9 Add a link to another page in your folder.

3. Colours

Adding Colour CSS – Cascading Style Sheet : modern programming language used to format the look of the web pages. Syntax Refer to student book P-106-107

Task Sheet Add a new heading h2 to your page colored maroon as “ No Task Completed Not Completed 10 Add a new heading h2 to your page colored maroon as “ Sheikh Zayed bin Sultan Al Nahyan, the Founding President of the UAE “ 11 Add a blue paragraph copied from the government page as advised by your teacher.

4. Adding Tables

Table Main Structure <table> </table> Make table <th></th> Table header <tr> </tr> Table Row <td></td> Table Data

Output of our table Border Line <table> <table border= "1">

Add a border to your table <table> </table> Make table <th></th> Table header <tr> </tr> Table Row <td></td> Table Data

Task Sheet Create a table using the <table > tag No Task Completed Not Completed 12 Create a table using the <table > tag 13 Add the following table headings and raws

Evaluate your Understanding