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.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Table, List, Blocks, Inline Style
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.
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
HTML popo.
Introduction to HTML & CSS
Ideas to Layout Beginning web layout using Cascading Style Sheets (CSS). Basic ideas, practices, tools and resources for designing a tableless web site.
Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
Cascading Style Sheets: Basics I450 Technology Seminar Copyright 2003, Matt Hottell.
Cascading Style Sheets
HTML Overview - Cascading Style Sheets (CSS). Before We Begin Make a copy of one of your HTML file you have previously created Make a copy of one of your.
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
Chapter 7 Using Advanced Cascading Style Sheets HTML5 & CSS 7 th Edition.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
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.
4.01 Cascading Style Sheets
Basics of HTML.
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
Chapter 11 Cascading Style Sheets: Part I The Web Warrior Guide to Web Design Technologies.
Cascading Style Sheets Part 1 Library and Information Services, University of St Andrews.
 ult.htm ult.htm  This website illustrates the use of CCS (style sheets)
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
HTML Structure & syntax
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.
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.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Introduction to HTML. HTML Hyper Text Markup Language Page Title My First Heading My first paragraph. Page Title My First Heading My first paragraph.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
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.
Cascading Style Sheets Part 1. CSS vs HTML HTML: Originally intended to markup structure of a document (,...,,,,,...) CSS Developing technology, CSS1,
CS134 Web Design & Development Cascading Style Sheets (CSS) Mehmud Abliz.
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
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.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
DIGI KNOW? Intro to Web Development Bishoy Riad, Director of Web Development.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
NASRULLAHIBA.  It is time to take your web designing skills to the next level with Cascading Style Sheets (CSS). They are a way to control the look and.
WEB DESIGN Presentated By Amit Kapri Contact No
CASCADING STYLE SHEET CSS. CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem.
CSS (Cascading Style Sheets). CSS CSS – Cascading Style Sheets – Cascade because of the way CSS rules can stack on top of each other. Allows you to add.
Basic HTML Introduction to HTML.
Pertemuan 1 Desain web Pertemuan 1
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Basics: HTML/CSS/JavaScript What are they?
Getting Started with CSS
4.01 Cascading Style Sheets
>> Introduction to CSS
Mansoor Ahmed Bughio.
INTRODUCTION TO HTML AND CSS
Introduction to web design discussing which languages is used for website designing
Introduction to Web Page Design
CS134 Web Design & Development
INTRODUCTION TO HTML AND CSS
Introduction to HTML5.
CSS Styles Introduction.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HTML / CSS Mai Moustafa Senior Web Designer eSpace eSpace.
Web Application Development
Web Design & Development
Pertemuan 1 Desain web Pertemuan 1
4.01 Cascading Style Sheets
Web Programming and Design
Web Programming and Design
Web Programming and Design
Presentation transcript:

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 And plenty of examples...

Elements of the web Structure Hyper Text Markup Language Presentation Cascading Style Sheets Behaviour Javascript / jQuery

Structure - what is HTML Hyper Text Markup Language - Allows you to provide links between pages and content - A markup language consists of markup tags. Tags group and describe page content. Semantic markup tags add meaning to your content (example: A Top Level Headline, or emphasized text

Document structure I'm a headline I am a paragraph of text

Presentation – CSS The web browser software has default styles that determine how each element looks; your own nicer looking styles must be added. Styles are written by stating a selector together with a declaration. A declaration is a property: value pair, for example h1 { color: blue; } Here, the selector is h1 – this is the HTML element we work with. The declaration is { color: blue; }

The Tools The web browser is the most important tool in your kit... Not all browsers are created equal, but: - Firefox has the plugin “Firebug”, which makes it easy to “inspect” - Chrome can also “test” your styling on “mobile”.

Let's add some style!