Johan Ng and Muhammad Hazzry

Slides:



Advertisements
Similar presentations
Table, List, Blocks, Inline Style
Advertisements

HTML Introduction CS 1020 – Lego Robot Design. Building Websites HTML (HyperText Markup Language)  The dominate language of the internet  Describes.
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
HTML popo.
HTML: HyperText Markup Language Hello World Welcome to the world!
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
Very quick intro HTML and CSS. Sample html A Web Title.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
 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.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
 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.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
Define html document byusing Example : Title of the document The content of the document......
HTML (HyperText Markup Language)
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
HTML Basic I IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
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 Basic IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
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.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
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.
Web programming Part 1: HTML 由 NordriDesign 提供
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
Introduction to Programming
Lab 3 Html basics.
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
Html.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML basics
Web Development Part 1.
LAB Work 01 MBA 61062: E-Commerce
Semester - Review.
HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
HTML Lab 5 10/1/2015.
HTML GUIDE Press F5 and then
CSCI-235 Micro-Computers in Science
Uppingham Community College
INTRODUCTION TO HTML AND CSS
Text Elements.
Chapter 1: Introduction to XHTML (part 1)
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
Web Programming– UFCFB Lecture 5
COMPUTING FUNDAMENTALS
Introduction to Web Page Design
HTML (HyperText Markup Language)
HTML.
Text Elements.
Computers and Scientific Thinking David Reed, Creighton University
Text Elements.
Introduction to HTML- Basics
INTRODUCTION TO HTML AND CSS
Text Elements.
HTML & CSS 7 Languages in 7 Days.
WJEC GCSE Computer Science
Text Elements.
Presentation transcript:

Johan Ng and Muhammad Hazzry HTML Workshop! Johan Ng and Muhammad Hazzry

https://tinyurl.com/yagwfevl Used to create web documents Markup language = set of markup tag Tags describe document content

Hyper Text Markup Language Used to create web documents Markup language = set of markup tag Tags describe document content

HTML Structure <html> <body> <p> </p> The opening <html> tag indicates that anything between it and a closing </html> tag is HTML code The <body> tag indicates that anything between it and a closing </body> tag is shown inside the main browser window Other contents that is to be in the main browser should be defined within their own tags. e.g. • <p> … </p> • <div> … </div>

<h1> content </h1> HTML Tags <h1> content </h1> Opening Tag Closing Tag

Key important Tags Title <title> </title> Headers <h1> </h1> Paragraph <p> </p> Horizontal Line <hr> Line Break <br> Images <img src “”> Links <a href = “”> </a> Ordered list <ol> </ol> Unordered list <ul> </ul> List element <li> </li>

Title <title> this is a title <title>

Headers <h1>H1 Heading</h1>

Paragraphs and line break

Paragraphs and line break <p>wall of text</p> <p>wall of text<br> wall of text<br> wall of text<br></p>

Horizontal lines <p>this is a horizontal line!<hr></p>

Images <p><img src = "https://www.gettyimages.ie/gi- resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg" alt="Image" height="275" width="570" > </p>

Hyperlink <p><a href= "https://www.google.com/">google</a></p>

Formatting elements Bold <b> </b> italics <i> </i> Underline <u> </u> Strikethrough <s> </s> Strong <strong> </strong> https://www.w3schools.com/html/html_formatting.asp

Styles! <h1 style = "color: red"> H1 Heading </h1> <h2 style = "font-family: Impact"> H2 Heading </h2> <h3 style = "background-color: yellow"> H3 Heading </h3> <h4 style = "text-shadow: 2px 2px blue"> H4 Heading </h4> <h5 style = "font-size: 10px"> H5 Heading </h5> <h6 style = "text-shadow: 2px 2px 10px yellow"> H6 Heading </h6> https://www.w3schools.com/html/html_styles.asp

Cascading style sheets H1 {color:blue;} Selector Property Value

Try it yourself!

Getting started Create a folder by name “Workspace” on your desktop Open Wordpad, save it as “index.html” Follow me!