Pertemuan 1b http://www.w3schools.com/html/html_basic.asp.

Slides:



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

To. An easy way to explain the internet is to think of your school computers all linked together into a network that you can put information into.
HTML Assignment 01. Contents like images, text, Forms, etc Javascript programs, style rules, meta tags Start tag End tag HTML Page Structure.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
HTML. Creating a Table Attributes: border: indicates the border type of the table Value: 0 (no border), 1, 2, etc. cols: indicates the number of columns.
Basics of HTML.
HTML Links and Anchors.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Agenda Links External and Internet Links Anchor Tag Text Hyperlinks Image Hyperlinks Images Image Attributes: src, alt, width, height, align, border.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 30 – Bookstore Application: Client Tier Introducing.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Images in HTML PowerPoint How images are used in HTML.
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. 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.
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”
Web Design (8) Images (2). My Holiday Photos An exercise in adding and linking images. Create a new website folder calling it ‘My Holiday Photos’. In.
HTML Images Dr. Baker Abdalahq. The Image Tag and the Src Attribute In HTML, images are defined with the tag. In HTML, images are defined with the tag.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Adding Images to Your Web Page Web Design Section 5-7 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
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: … …
REEM ALMOTIRI Information Technology Department Majmaah University.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Lecture 8 Introduction to Web Programming. Announcement  First In-class exam will be on Oct. 10 (Wednesday)  2.50pm – 4.05pm  Exam will cover all materials.
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.
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.
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
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.
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.
Introduction to HTML 4.0 Getting Started – Links, Images, Font, and List Teacher: Mr. Ho.
Lecture 6, MAT 279, Fall HTML Introduction (cont.) 9/17/2009.
TNPW1 Ing. Jiří Štěpánek.  Tags  Marks for elements ▪ Pair ▪ Start and end tag ( Paragraph text ) ▪ Single ▪ Only start tag, according to XHTML 1.0.
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
BHS Web Design Mr. Campbell
Images in HTML PowerPoint How images are used in HTML
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
HTML.
Intro to HTML Mr. Singh.
Hosted by Coach Slanina
Introduction to Web programming
Intro to CSS CS 1150 Fall 2016.
Web Design and Development
Adding Images to Your Web Page
HTML Images CS 1150 Spring 2017.
COMPUTING FUNDAMENTALS
Intro to CSS CS 1150 Spring 2017.
Graphics (Characteristics 1)
Basic HTML and Embed Codes
HTML Introduction Lecture 8.
HTML Images.
Introduction to HTML5.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
HTML Images CS 1150 Fall 2016.
HTML Basic Structure.
Introduction to HTML.
Pertemuan 1 Desain web Pertemuan 1
Images in HTML PowerPoint How images are used in HTML
Hyperlinks, Images, Comments, and More…
Creating your website and learning HTML
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

Pertemuan 1b http://www.w3schools.com/html/html_basic.asp

HTML Basic Examples

HTML Documents All HTML documents must start with a type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>.

HTML Headings HTML headings are defined with the <h1> to <h6> tags:

HTML Paragraphs HTML paragraphs are defined with the <p> tag:

HTML Links 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.

HTML Images HTML images are defined with the <img> tag. The source file (src), alternative text (alt), and size (width and height) are provided as attributes: