INTRODUCTION TO HTML AND CSS

Slides:



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

HTML popo.
Introduction to HTML & CSS
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
Cascading Style Sheets (CSS). Cascading Style Sheets With the explosive growth of the World Wide Web, designers and programmers quickly explored and reached.
CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Introduction to CSS. What is CSS? A CSS (cascading style sheet) file allows you to separate your web sites (X)HTML content from it’s style. Use your (X)HTML.
© 2004, Robert K. Moniot Chapter 6 CSS : Cascading Style Sheets.
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
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;
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
Basics of HTML.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
CSS CSS is short for C ascading S tyle S heets. It is a new web page layout method that has been added to HTML to give web developers more control over.
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,
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
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.
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.
Cascading Style Sheets I Embedded Style Sheets. Page Design ICSS 2Instructor: Sean Griffin What is a Style Sheet? A style sheet is a text file that contains.
Microsoft Expression Web 3 – Illustrated Unit D: Structuring and Styling Text.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Cascading Style Sheets Using HTML. What are they? A set of style rules that tell the web browser how to present a web page or document. In earlier versions.
CSS Introductions. Objectives To take control of the appearance of a Web site by creating style sheets. To use a style sheet to give all the pages of.
Week 1: Introduction to HTML and Web Design
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
Introduction to CSS: Selectors
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
Internet Exploration: HTML Basics
>> Introduction to CSS
Mansoor Ahmed Bughio.
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
Cascading Style Sheets (CSS)
Introduction to Web programming
Intro to CSS CS 1150 Fall 2016.
Internet Exploration: HTML Basics
HTML Robert McIntosh
WEBSITE DESIGN Chp 1
Intro to CSS CS 1150 Spring 2017.
TOPICS Chrome Dev Tools Process for Building a Static Website
Stylin’ with CSS.
HTML 12/27/2018.
What are Cascading Stylesheets (CSS)?
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
Introduction to HTML5.
Web Design and Development
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
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
Stylin’ with CSS.
Stylin’ with CSS.
Web Programming and Design
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

INTRODUCTION TO HTML AND CSS LEARNING THE LANGUAGE OF THE WEB

What is HTML? HTML stands for: Hypertext Markup Language A markup language, HTML elements are the building blocks of web pages. HTML elements use tags to structure content.

<title></title> </head> <body> Tags HTML elements consist of tags. Tags are enclosed by angle brackets, like this: <html> Tags usually come in pairs, like this: <title> and </title> Tags have a start (or opening) and end (or closing). Tags are not displayed in a web browser. Tags interpret how to display content between the tags. <html> <head> <title></title> </head> <body> <h1></h1> <p></p> </body> </html>

Tags <html></html> describes the web page. <head></head> describes the header. <body></body> describes visible page content. Common formatting tags: <h1></h1> displays a heading, ranging from size 1 (biggest) to 6 (smallest). <p></p> formats text as a paragraph. <strong></strong> bolds text. <em></em> emphasizes text, displays as italics. <br> creates a line break. Links: <a href="http://www.example.com"></a> creates a link to a web page.

CSS CSS stands for: Cascading Style Sheets Describes the “look and feel” of HTML elements on a web page. Helps separate document content (HTML) from document presentation (CSS). Structures presentation elements such as layout, colors, and fonts.

CSS A style sheet contains a list of rules about how elements appear on a page. Consists of a selector and a declaration block: Selectors tell which markup elements the style applies to. A declaration block is a list of property and value pairs that define the style. Can be embedded inside the HTML or linked as a separate document. h1 { font-family: Verdana, Geneva, sans-serif; font-size: 24px; font-weight: bold; text-transform: uppercase; color: #C00; }

Evolution of HTML and CSS HTML and CSS are a collection of web standards. HTML and CSS are a set of best practices for building websites. HTML and CSS are constantly evolving: HTML5 is the fifth iteration of HTML and adds tags to support multimedia elements and dynamic graphics in modern web browsers. CSS3 defines a new set of modular rules for how HTML content will be presented within the web browser.

HTML5 best practices Use HTML5 <!doctype html> to tell a browser how to translate. Use <meta charset="utf-8"> to tell a browser the character-set. Use semantic markup tags <article>, <section>, <header>, <nav>, and others to bring a higher level of structural meaning to documents. Design and test content across a range of browsers and devices that support HTML5 capabilities.