Overview. Basic HTML More HTML Elements Web Standards

Size: px
Start display at page:

Download "Overview. Basic HTML More HTML Elements Web Standards"

Transcription

1 BASIC HTML 1

2 Overview 2 Basic HTML More HTML Elements Web Standards

3 3 Basic HTML

4 Hypertext Markup Language (HTML) 4 Describes the content and structure of information on a web page Not the same as the presentation (appearance on screen) Surrounds text content with opening and closing tags Each tag's name is called an element syntax: <element> content </element> example: <p>this is a paragraph</p>

5 XHTML 5 Uses a markup format called XML XML + HTML = XHTML Standardized in 2000 A strict XHTML page uses some different syntax and tags than HTML

6 Structure of XHTML page 6 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" " <html xmlns=" <head> information about the page </head> <body> page contents </body> </html> HTML is saved with extension.html Basic structure: tags that enclose content, i.e., elements Header describes the page Body contains the page s contents HTML

7 Page Title <title> 7 <head> <title> HARRY POTTER AND THE DEATHLY HALLOWS - PART 2 </title> </head> HTML Placed within the head of the page Displayed in web browser s title mark and when bookmarking the page

8 Paragraph <p> 8 <body> <p> Harry Potter and the Deathly Hallows, the last book in the series, begins directly after the events of the sixth book. Voldemort has completed his ascension to power and gains control of the Ministry of Magic</p> </body> HTML Harry Potter and the Deathly Hallows, the last book in the series, begins directly after the events of the sixth book. Voldemort has completed his ascension to power and gains control of the Ministry of Magic output Placed within the body of the page

9 Headings <h1>, <h2>, <h6> 9 <h1> Harry Potter </h1> <h2> Books </h2> <h3> Harry Potter and the Philosopher s Stone </h3> HTML Harry Potter Books Harry Potter and the Philosopher s Stone output

10 Horizontal rule <hr /> 10 <p> First paragraph </p> <hr /> <p> Second Paragraph </p> HTML First Paragraph Second Paragraph output Should be immediately closed with />

11 Block and Inline Statements 11 Block elements contain an entire large region of content examples: paragraphs, lists, table cells the browser places a margin of whitespace between block elements for separation

12 Block and Inline Statements (cont.) 12 Inline elements affect a small amount of content examples: bold text, code fragments, images the browser allows many inline elements to appear on the same line must be nested inside a block element

13 More HTML tags 13 Some tags can contain additional information called attributes syntax: <element attribute="value" attribute="value"> content </element> example: <a href="page2.html">next page</a>

14 More HTML tags 14 Some tags don't contain content; can be opened and closed in one tag syntax: <element attribute="value" attribute="value" /> example: <hr /> example: <img src= Harry.jpg" alt="pic of Harry Potter" />

15 Links <a> 15 <p> Search <a href=" now! </p> Search Google now! HTML output The href attribute specifies the destination URL Links or anchors are inline elements, so they must be placed inside a block element such as a p or h1

16 More about anchors 16 <p><a href= deathlyhallows-book.html">harry Potter and the Deathly Hallows Book</a></p> <p><a href=" title="search">wikipedia</a></p> HTML Harry Potter and the Deathly Hallows Wikipedia output Types of URLs that can appear in anchors: Absolute: to another web site Relative: to another page on this web site

17 Nesting tags 17 Bad <p> <a href=" deathlyhallows-book.html"> Harry Potter and the Deathly Hallows Book </p> <p> This text also links to Harry Potter Book</a> </p> HTML Tags must be correctly nested: a closing tag must match the most recently opened tag The browser may render it correctly anyway, but it is invalid XHTML

18 Images <img> 18 <img src="images/tobby.jpg" alt= Tobby from Harry Potter" /> HTML The src attribute specifies source of the image URL XHTML also requires an alt attribute describing the image

19 More about images 19 <a href=" <img src="images/dumbledore.jpg" alt= Dumbledore from Harry Potter" title="alas! Ear wax!"/> </a> HTML If placed inside an anchor, the image will become a link The title attribute specifies an optional tooltip

20 Line Break <br> 20 <p>one Ring to rule them all, One Ring to find them,<br /> One Ring to bring them all and in the darkness bind them.</p> <p> In the Land of Mordor where the Shadows lie. </p> HTML One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them In the Land of Mordor where the Shadows lie. br should be immediately closed with /> br should not be used to separate paragraphs or used multiple times in a row to create spacing output

21 Comments <!-- -- > 21 <! Comment here --> <p>cs courses are <!-- NOT --> a lot of fun!</p> HTML CS courses are a lot of fun! output Comments are useful for disabling sections of a page Comments cannot be nested

22 Phrase elements <em>, <strong> 22 <p> HTML is <em>really</em>, <strong>really</strong> fun! </p> HTML HTML is really REALLY fun! output em: emphasized text (usually in italic) strong: strongly emphasized text (usually in bold) The tags must be properly nested for a valid page

23 23 More HTML Elements

24 Unordered list: <ul>, <li> 24 <ul> <li>no shoes</li> <li>no shirt</li> <li>no problem!</li> </ul> No shoes No shirt No problem! HTML output ul represents a unordered list of items (block) li represents a listed item within the list (block)

25 More about unordered lists 25 <ul> <li>harry Potter characters: <ul> <li>harry Potter</li> <li>hermione</li> <li>ron</li> </ul> </li> <li>lotr characters: <ul> <li>frodo</li> <li>bilbo</li> <li>sam</li> </ul> </li> </ul> HTML

26 More about unordered lists (cont.) 26 Harry Potter characters: Harry Potter Hermione Ron LOTR characters: Frodo Bilbo Sam output

27 Ordered list <ol> 27 <p>apple business model:</p> <ol> <li>beat Microsoft</li> <li>beat Google</li> <li>conquer the world!</li> </ol> HTML Apple business model: 1. Beat Microsoft 2. Beat Google 3. Conquer the world output ol represents an ordered list of items we can make lists with letters or Roman numerals using CSS (later)

28 Common error: Not closing a list 28 <ul> <li>no shoes</li> <li>no shirt</li> <li>no problem!</li> <p>paragraph after list...</p> HTML No shoes No shirt No problem! Paragraph after list... output If you leave a list open, subsequent contents will be indented

29 Common Error: Improper nested list 29 placement <ul> <li>harry Potter characters:</li> <ul> <li>harry Potter</li> <li>hermione</li> <li>ron</li> </ul> </li> <li>lotr characters: <ul> <li>frodo</li> <li>bilbo</li> <li>sam</li> </ul> </ul> HTML closing the outer li too early (or not at all) will render correctly in most browsers, but it is incorrect XHTML

30 Definition list <dl>, <dt>, <dd> 30 <dl> <dt>newbie</dt> <dd>one who does not have mad skills</dd> <dt>jaded</dt> <dd>tired, bored, or lacking enthusiasm </ dd> <dt>frag</dt> <dd>a kill in a shooting game</dd> </dl> HTML newbie one who does not have mad skills jaded Tired, bored, or lacking enthusiasm frag a kill in a shooting game dl represents a list of definitions of terms dt represents each term, and dd its definition output

31 Tables <table>, <tr>, <td> 31 <table> <tr><td>1,1</td><td>1,2 okay</td></tr> <tr><td>2,1 real wide</td><td>2,2</td></tr> </table> HTML 1,1 1,2 okay 2,1 real wide 2,2 table defines the overall table, with tr defining each row td defining each cell's data NOTE: tables are sometimes used by novices for web page layout, but this is not proper semantic HTML and should be avoided output

32 Table header, caption: <th>,<caption> 32 <table> <caption>my important data</caption> <tr><th>column 1</th><th>Column 2</th></tr> <tr><td>1,1</td><td>1,2 okay</td></tr> <tr><td>2,1 real wide</td><td>2,2</td></tr> </table> HTML My important data Column 1 Column 2 1,1 1,2 okay 2,1 real wide 2,2 th cells in a row are considered headers output a caption at the start of the table labels its meaning

33 Quotations <blockquote> 33 <p>as Lincoln said in his famous Gettysburg Address:</p> <blockquote> <p>fourscore and seven years ago, our fathers brought forth on this continent a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal.</p> </blockquote> HTML As Lincoln said in his famous Gettysburg Address: Fourscore and seven years ago, our fathers brought forth on this continent a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal. output a lengthy quotation

34 Inline quotations <q> 34 <p>quoth the Raven, <q>nevermore.</q></p> HTML Quoth the Raven, Nevermore. output a short quotation Why not just write the following? <p>quoth the Raven, "Nevermore."</p> We don't use " marks for two reasons: XHTML shouldn't contain literal quotation mark characters; they should be written as " using <q> allows us to apply CSS styles to quotations

35 HTML Character Entities 35 character(s) entity < > < > é è ñ é è ñ π δ Δ π δ Δ И И " & " &

36 Computer code <code> 36 <p> The <code>ul</code> and <code>ol</code> tags make lists. </p> The ul and ol tags make lists. HTML output code: a short section of computer code

37 Preformatted text <pre> 37 <pre> Bill Gates speaks You will be assimilated Microsoft fans delirious </pre> Bill Gates speaks You will be assimilated Microsoft fans delirious HTML output Displayed with exactly the whitespace / line breaks given in the text Shown in a fixed-width font by default

38 38 Web Standards

39 Web Standards 39 Why use XHTML and web standards? more rigid and structured language more interoperable across different web browsers more likely that our pages will display correctly in the future (compatibility) can be interchanged with other XML data: SVG (graphics), MathML, MusicML, etc.

40 W3C XHTML Validator 40 <p> <a href=" <img src=" alt="validate" /> </a> </p> HTML checks your HTML code to make sure it meets the official strict XHTML specifications

41 Web page metadata <meta> 41 <meta name="description" content= Harry Potter Official Website." /> <meta name="keywords" content="harry potter, harry potter and the deathly hallows, deathly hallows, ministry of magic, resurrection stone, clock of invisibility" /> <meta http-equiv="content-type" content="text/html; charset=iso " /> information about your page (for a browser, search engine, etc.) placed in the head of your XHTML page meta tags often have both the name and content attributes HTML some meta tags use the http-equiv attribute instead of name

42 meta element to aid browser / web server 42 <meta http-equiv="content-type" content="type of document (character encoding)" /> <meta http-equiv="refresh" content="how often to refresh the page (seconds)" /> </head> HTML using the Content-Type specifies the type of document <meta http-equiv="content-type" content="text/html; charset=iso " /> the meta refresh tag can redirect from one page to another: <meta http-equiv="refresh" content="5;url= /> why would we want to do this?

43 meta element to describe the page 43 <head> <meta name="author" content="web page's author" /> <meta name="revised" content="web page version and/or last modification date" / > <meta name="generator" content="the software used to create the page" /> </head> HTML many WYSIWYG HTML editors place their names in the meta generator tag (why?)

44 meta element to aid search engines 44 <head> <meta name="description" content="how you want search engines to display your page" /> <meta name="keywords" content="words to associate with your page (comma separated)" /> </head> HTML these are suggestions to search engines about how to index your page the search engine may choose to ignore them (why?)

45 CASCADING STYLE SHEETS (CSS)

46 Overview 46 Basic CSS CSS Properties More CSS Syntax

47 47 Basic CSS

48 The good, the bad and the ugly! 48 <p> <font face="arial">shashdot.</font> News for <b>nerds!!</b> You will <i>never</i>, <u>ever</u> be <font size="+4" color="red">bored</font> here! </p> HTML Slashdot. News for nerds!! You will never, EVER be BORED here! output Tags such as b, i, u, and font are discouraged in strict XHTML Why is this bad?

49 Cascading Style Sheets (CSS) 49 Describes the appearance, layout, and presentation of information on a web page HTML describes the content of the page Describes how information is to be displayed, not what is being displayed Can be embedded in HTML document or placed into separate.css file

50 Basic CSS rule syntax 50 selector { property: value; property: value;... property: value; } CSS p { font-family: sans-serif; color: red; } CSS A CSS file consists of one or more rules Each rule starts with a selector A selector specifies an HTML element(s) and then applies style properties to them a selector of * selects all elements

51 Aside: Favorites icon ("favicon") 51 <link href="filename" type="mime type" rel="shortcut icon" /> HTML <link href="yahoo.gif" type="image/gif" rel="shortcut icon" /> HTML The link tag, placed in the HTML page's head section, can specify an icon this icon will be placed in the browser title bar and bookmark/favorite

52 Attaching a CSS file <link> 52 <head>... <link href="filename" type="text/css" rel="stylesheet" />... </head> HTML <link href="style.css" type="text/css" rel="stylesheet" /> <link href=" rel="stylesheet" type="text/css" /> HTML A page can link to multiple style sheet files In case of a conflict (two sheets define a style for the same HTML element), the latter sheet's properties will be used

53 Embedding style sheets: <style> 53 <head> <style type="text/css"> p { font-family: sans-serif; color: red; } h2 { background-color: yellow; } </style> </head> HTML CSS code can be embedded within the head of an HTML page Bad style and should be avoided when possible (why?)

54 Inline styles: the style attribute 54 <p style="font-family: sans-serif; color: red;"> This is a paragraph</p> HTML This is a paragraph output Higher precedence than embedded or linked styles Used for one-time overrides and styling a particular element Bad style and should be avoided when possible (why?)

55 Cascading Style Sheets 55 Properties of an element cascade together in this order (precedence): browser's default styles external style sheet files (in a <link> tag) embedded/internal style sheets (inside a <style> tag in the page's header) inline style (the style attribute of the HTML element)

56 W3C CSS Validator 56 <p> <a href=" referer"> <img src=" alt="valid CSS!" /></a> </p> CSS output jigsaw.w3.org/css-validator/ checks your CSS to make sure it meets the official CSS specifications

57 57 CSS Properties

58 CSS properties for colors 58 p { color: red; background-color: yellow; } This paragraph uses the style above CSS output property color background-color description color of the element's text color that will appear behind the element

59 Specifying colors 59 p { color: red; } h2 { color: rgb(128, 0, 196); } h4 { color: #FF8800; } CSS This paragraph uses the first style above This h2 uses the second style above. This h4 uses the third style above. output color names: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white (white), yellow RGB codes: red, green, and blue values from 0 (none) to 255 (full) hex codes: RGB values in base-16 from 00 (0, none) to FF (255, full)

60 Grouping styles 60 p, h1, h2 { color: green; } h2 { background-color: yellow; } CSS This paragraph uses the above style. This h2 uses the above styles. output A style can select multiple elements separated by commas The individual elements can also have their own styles

61 CSS comments /* */ 61 /* This is a comment. It can span many lines in the CSS file. */ p { color: red; background-color: aqua; } CSS CSS (like HTML) is usually not commented as rigorously as programming languages such as Java The // single-line comment style is NOT supported in CSS The <! > HTML comment style is also NOT supported in CSS

62 CSS properties for fonts 62 property font-family font-size font-style font-weight description which font will be used how large the letters will be drawn used to enable/disable italic style used to enable/disable bold style Complete list of font properties (

63 font-family 63 p { font-family: Georgia; } h2 { font-family: "Courier New"; } CSS This paragraph uses the first style above. This h2 uses the second style above. output Enclose multi-word font names in quotes

64 More about font-family 64 p { font-family: Garamond, "Times New Roman", serif; } CSS This paragraph uses the above style. output We can specify multiple fonts from highest to lowest priority Generic font names: serif, sans-serif, cursive, fantasy, monospace If the first font is not found on the user's computer, the next is tried Placing a generic font name at the end of your font-family value, ensures that every computer will use a valid font

65 font-size 65 p { font-size: 24pt; } CSS This paragraph uses the style above. units: pixels (px) vs. point (pt) vs. m-size (em) 16px, 16pt, 1.16em output vague font sizes: xx-small, x-small, small, medium, large, x-large, xx-large, smaller, larger percentage font sizes, e.g.: 90%, 120%

66 font-size 66 p { font-size: 24pt; } CSS This paragraph uses the style above. output pt specifies a number of points, where a point is 1/72 of an inch onscreen px specifies a number of pixels on the screen em specifies number of m-widths, where 1 em is equal to the font's current size

67 font-weight, font-style 67 p { font-weight: bold; font-style: italic; } CSS This paragraph uses the style above. output Either of the above can be set to normal to turn them off

68 CSS properties for text 68 property text-align text-decoration line-height, word-spacing, letter-spacing text-indent description alignment of text within its element decorations such as underlining gaps between the various portions of the text indents the first letter of each paragraph Complete list of text properties (

69 text-align 69 blockquote { text-align: justify; } h2 { text-align: center; } CSS The Gollum s Quote We wants it, we needs it. Must have the precious. They stole it from us. Sneaky little hobbitses. Wicked, tricksy, false! output text-align can be left, right, center, or justify

70 text-decoration 70 p { text-decoration: underline; } CSS This paragraph uses the style above. output can also be overline, line-through, blink, or none effects can be combined: text-decoration: overline underline;

71 The list-style-type property 71 ol { list-style-type: lower-roman; } Possible values: CSS i. none : No marker ii. disc (default), circle, square iii. Decimal: 1, 2, 3, etc. iv. decimal-leading-zero: 01, 02, 03, etc. v. lower-roman: i, ii, iii, iv, v, etc. vi. upper-roman: I, II, III, IV, V, etc. vii. lower-alpha: a, b, c, d, e, etc. viii. upper-alpha: A, B, C, D, E, etc. x. lower-greek: alpha, beta, gamma, etc. others: hebrew, armenian, georgian, cjk-ideographic, hiragana

72 Body styles 72 body { font-size: 16px; } CSS Applies a style to the entire body of your page Saves you from manually applying a style to each element

73 Inheriting styles 73 body { font-family: sans-serif; background-color: yellow; } p { color: red; background-color: aqua; } a { text-decoration: underline; } h2 { font-weight: bold; text-align: center; } CSS This is a heading A styled paragraph. Previous slides are available on the website. A bulleted list output when multiple styles apply to an element, they are inherited a more tightly matching rule can override a more general inherited rule

74 Styles that conflict 74 p, h1, h2 { color: blue; font-style: italic; } h2 { color: red; background-color: yellow; } CSS This paragraph uses the first style above. This heading uses both styles above. output when two styles set conflicting values for the same property, the latter style takes precedence

75 CSS properties for backgrounds 75 property background-color background-image background-position background-repeat background-attachment background description color to fill background image to place in background placement of bg image within element whether/how bg image should be repeated whether bg image scrolls with page shorthand to set all background properties

76 background-image 76 body { background-image: url("images/draft.jpg"); } CSS background image/color fills the element's content area

77 background-repeat 77 body { background-image: url("images/draft.jpg"); background-repeat: repeat-x; } CSS can be repeat (default), repeat-x, repeat-y, or no-repeat

78 background-position 78 body { background-image: url("images/draft.jpg"); background-repeat: no-repeat; background-position: 370px 20px; } CSS value consists of two tokens, each of which can be top, left, right, bottom, center, a percentage, or a length value in px, pt, etc. value can be negative to shift left/up by a given amount

79 79 More CSS Syntax

80 XHTML id attribute 80 <p>coding Horror! Coding Horror!</p> <p id="mission">our mission is to combine programming and <q>human</q> factors with geekiness!</p> HTML Coding Horror! Coding Horror! Our mission is to combine programming and human factors with geekiness! output A unique ID for an element on a page Each ID must be unique; can only be used once in the page

81 Linking to sections of a web page 81 <p>visit <a href= " textpad.com</a> to get the TextPad editor.</p> <p><a href="#mission">view our Mission Statement</a></p> HTML Visit textpad.com to get the TextPad editor. View our Mission Statement output Link target can include an ID at the end, preceded by a # Browser will load that page and scroll to element with given ID

82 CSS ID selectors 82 #mission { font-style: italic; font-family: "Garamond", "Century Gothic", serif; } CSS Coding Horror! Coding Horror! Our mission is to combine programming and human factors with geekiness! output Applies style only to the paragraph that has the ID mission

83 HTML class attribute 83 <p class="shout">coding Horror! Coding Horror!</p> <p class="special">see our special deal on Droids!</p> <p class="special">today only!</p> HTML Coding Horror! Coding Horror! See our special deal on Droids! Today only! output A way to group some elements and give a style to only that group Unlike an id, a class can be reused as much as you like on the page

84 CSS class selectors 84.special { /* any element with class="special" */ background-color: yellow; font-weight: bold; } p.shout { /* only p elements with class="shout" */ color: red; font-family: cursive; } CSS Coding Horror! Coding Horror! See our special deal on Droids! Today only! output

85 CSS class selectors 85 <p class="shout">coding Horror! Coding Horror!</p> <p class="special">see our special deal on Droids!</p> <p class="special shout">today only!</p> HTML Coding Horror! Coding Horror! See our special deal on Droids! Today only! output

86 CSS pseudo-classes 86 a:link { color: #FF0000; } /* unvisited link */ a:visited { color: #00FF00; } /* visited link */ a:hover { color: #FF00FF; } /* mouse over link */ Buy Early Buy Often! CSS output

87 CSS pseudo-classes 87 class :active :focus :hover :link :visited :first-letter :first-line :first-child description an activated or selected element an element that has the keyboard focus an element that has the mouse over it a link that has not been visited a link that has already been visited the first letter of text inside an element the first line of text inside an element an element that is the first one to appear inside another

88 PAGE LAYOUT WITH CSS

89 Overview 89 Styling Page Sections Introduction to Layout Floating Elements Sizing & Positioning

90 90 Styling Page Sections

91 Why do we need page sections? 91 Style individual elements, groups of elements, sections of text or of the page Create complex page layouts

92 Sections of a page <div> 92 <div class="shout"> <h2>coding Horror! Coding Horror!</h2> <p class="special">see our special deal on Droids!</p> <p>we'll beat any advertised price!</p> </div> HTML Coding Horror! Coding Horror! See our special deal on Droids! We ll beat any advertised price! Tag used to indicate a logical section or area of a page output Has no appearance by default, but you can apply styles to it

93 Inline Sections <span> 93 <h2>coding Horror! Coding Horror!</h2> <p>see our <span class="special >spectacular</span> deal on Droids!</p> <p>we'll beat <span class="shout > any advertised price</ span>!</p> HTML Coding Horror! Coding Horror! See our spectacular deal on Droids! We ll beat any advertised price! output has no onscreen appearance, but you can apply a style or ID to it, which will be applied to the text inside the span

94 CSS context selectors 94 selector1 selector2 { properties } CSS applies the given properties to selector2 only if it is inside a selector1 on the page selector1 > selector2 { properties } CSS applies the given properties to selector2 only if it is directly inside a selector1 on the page

95 Context selector example 95 <p>eat at <strong>greasy's Burger</strong>...</p> <ul> <li>the <strong>greasiest</strong> burgers in town!</li> <li>yummy and greasy at the same time!</li> </ul> HTML li strong { text-decoration: underline; } CSS Eat at Greasy s Burger The greasiest burgers in town! Yummy and greasy at the same time! output

96 More complex example 96 <div id="ad"> <p>eat at <strong>greasy's Burger</strong>...</p> <ul> <li class="important">the <strong>greasiest</strong> burgers in town!</li> <li>yummy and <strong>greasy at the same time </strong>!</li> </ul> </div> HTML #ad li.important strong { text-decoration: underline; } CSS Eat at Greasy s Burger The greasiest burgers in town! Yummy and greasy at the same time! output

97 97 Introduction to Layout

98 The CSS Box Model 98 Every element composed of: content a border around the element padding between the content and the border a margin between the border and other content

99 The CSS Box Model (cont.) 99 width = content width + L/R padding + L/R border + L/R margin height = content height + T/B padding + T/B border + T/B margin

100 100 Document Flow block elements

101 101 Document flow - inline elements

102 102 Document flow - a larger example

103 CSS properties for borders 103 h2 { border: 5px solid red; } CSS This is a heading. property border description output thickness/style/size of border on all 4 sides Thickness: px, pt, em, or thin, medium, thick Style: none, hidden, dotted, dashed, double, groove, inset, outset, ridge, solid color

104 More border properties 104 property border-color, border-width, border-style border-bottom, border-left, border-right, border-top border-bottom-color, border-bottomstyle, border-bottom-width, border-leftcolor, border-left-style, border-left-width, border-right-color, border-right-style, border-right-width, border-top-color, border-top-style, border-top-width description specific properties of border on all 4 sides all properties of border on a particular side properties of border on a particular side Complete list of border properties css_border.asp

105 Another border example 105 h2 { border-left: thick dotted #CC0088; border-bottom-color: rgb(0, 128, 128); border-bottom-style: double; } CSS This is a heading. output each side's border properties can be set individually if you omit some properties, they receive default

106 CSS properties for padding 106 property padding padding-bottom padding-left padding-right padding-top description padding on all 4 sides padding on bottom side only padding on left side only padding on right side only padding on top side only Complete list of padding properties

107 Padding example p { padding: 20px; border: 3px solid black; } h2 { padding: 0px; background-color: yellow; } CSS This is a first paragraph. This is a second paragraph. This is a heading output

108 Padding example p { padding-left: 200px; padding-top: 30px; background-color: fuchsia; } CSS This is a first paragraph. This is a second paragraph each side's padding can be set individually notice that padding shares the background color of the element output

109 CSS properties for margins 109 property margin margin-bottom margin-left margin-right margin-top description margin on all 4 sides margin on bottom side only margin on left side only margin on right side only margin on top side only Complete list of margin properties

110 Margin example p { margin: 50px; background-color: fuchsia; } CSS This is a first paragraph This is a second paragraph output notice that margins are always transparent

111 Margin example p { margin-left: 8em; background-color: fuchsia; } CSS This is a first paragraph This is a second paragraph output each side's margin can be set individually

112 CSS properties for dimensions 112 p { width: 350px; background-color: yellow; } h2 { width: 50%; background-color: aqua; } CSS This paragraph uses the first style above An h2 heading output property width, height max-width, max-height, min-width, min-height description how wide or tall to make this element (block elements only) max/min size of this element in given dimension

113 113 Floating Elements

114 The CSS float property 114 img.headericon { float: right; width: 130px; } CSS Ghostbusters is a 1984 American science fiction comedy film written by co-stars Dan Aykroyd and Harold Ramis about three eccentric New York City parapsychologists-turned-ghost capturers. output property float description side to hover on; can be left, right, or none (default) removed from normal document flow; underlying text wraps around as necessary

115 115 Floating elements diagram

116 Common float bug: missing width 116 often floating block elements must have a width property value

117 The clear property 117 p { background-color: fuchsia; } h2 { clear: right; background-color: yellow; } CSS Mario Mario is is a fictional fictional character character in in his his video video game game series. series. Serving Serving as as Nintendo's Nintendo's mascot mascot and and the the main main protagonist protagonist of of the the series, series, Mario Mario has has appeared appeared in in over over video video games games since his since creation his creation. Super Mario Fan Site! output

118 The clear property (cont.) 118 property clear description disallows floating elements from overlapping this element; can be left, right, or none (default)

119 Clear diagram 119 div#sidebar { float: right; } p { clear: right; } CSS

120 Common error: container too short 120 <p><img src="images/mario.png" alt= super mario" /> Mario is a fictional character in his video game series...</p> HTML p { border: 2px dashed black; } img { float: right; } CSS Mario is a fictional character in his video game series. Serving as Nintendo's mascot and the main protagonist of the series, Mario has appeared in over 200 video games since his creation. output

121 The overflow property 121 p { border: 2px dashed black; overflow: hidden; } CSS Mario is a fictional character in his video game series. Serving as Nintendo's mascot and the main protagonist of the series, Mario has appeared in over 200 video games since his creation. output

122 The overflow property (cont.) 122 property overflow description specifies what to do if an element's content is too large; can be auto, visible, hidden, or scroll

123 Multi-column layouts 123 <div> </div> <p>first paragraph</p> <p>second paragraph</p> <p>third paragraph</p> Some other text that is important HTML p { float: right; width: 25%; margin: 0.5em; border: 2px solid black; } div { border: 3px dotted green; overflow: hidden; } CSS Some other text that is important third paragraph second paragraph first paragraph output

124 124 Sizing and Positioning

125 The position property (examples) 125 div#ad { position: fixed; right: 10%; top: 45%; } CSS property value description position top, bottom, left, right static relative absolute fixed positions of box's corners default position offset from its normal static position a fixed position within its containing element a fixed position within the browser window

126 Absolute positioning 126 #menubar { position: absolute; left: 400px; top: 50px; } CSS removed from normal flow positioned relative to the block element containing them actual position determined by top, bottom, left, right should often specify a width property as well

127 Relative positioning 127 #area2 { position: relative; } CSS absolute-positioned elements are normally positioned at an offset from the corner of the overall web page to make the absolute element to position itself relative to some other element's corner, wrap the absolute element in an element whose position is relative

128 Fixed positioning 128 #menubar { position: fixed; left: 400px; top: 50px; } CSS removed from normal flow positioned relative to the browser window even when the user scrolls the window, element will remain in the same place

129 Alignment vs. float vs. position 129 If possible, lay out an element by aligning its content horizontal alignment: text-align vertical alignment: vertical-align If alignment won't work, try floating the element If floating won't work, try positioning the element absolute/fixed positioning are a last resort and should not be overused

130 Details about inline elements 130 Size properties (width, height, min-width, etc.) are ignored margin-top and margin-bottom are ignored, but margin-left and margin-right are not ignored

131 Details about inline elements 131 the containing block element's text-align property controls horizontal position of inline elements within it text-align does not align block elements within the page each inline element's vertical-align property aligns it vertically within its block element

132 The vertical-align property 132 property vertical-align description specifies where an inline element should be aligned vertically, with respect to other content on the same line within its block element's box can be top, middle, bottom, baseline (default), sub, super, text-top, text-bottom, or a length value or % (baseline means aligned with bottom of non-hanging letters)

133 The display property 133 h2 { display: inline; background-color: yellow; } CSS output property display description sets the type of CSS box model an element is displayed with values: none, inline, block, run-in, compact,... use sparingly, because it can radically alter the page layout

134 The display property 134 <ul id="topmenu"> <li>item 1</li> <li>item 2</li> <li>item 3</li> </ul> HTML #topmenu li { display: inline; border: 2px solid gray; margin-right: 1em; } CSS lists and other block elements can be displayed inline flow left-to-right on same line width is determined by content output

135 The visibility property 135 p.secret { visibility: hidden; } CSS output hidden elements will still take up space onscreen, but will not be shown to make it not take up any space, set display to none instead can be used to show/hide dynamic HTML content on the page in response to events

136 HTML5

137 Rough Timeline of Web Technologies

138 HTML5 Latest standard for Designed to replace both HTML 4, XHTML (stricter and cleaner version of HTML), and the HTML DOM Level 2 (DOM specification) Designed to deliver rich content (Video and Audio) without the need for additional plugins. HTML5 is also cross-platform (PC, Tablet, Smartphone, or Smart TV)

139 HTML, XHTML, & HTML5

140 HTML5: New Features Semantic elements and Markups Audio and video support Canvas Drag and drop Local data storage Offline applications Server events Geolocation

141 Semantic elements A semantic element clearly describes its meaning to both the browser and the developer. Examples of non-semantic elements: <div> and <span> - Tells nothing about its content. Examples of semantic elements: <form>, <table>, and <img> - Clearly defines its content.

142 Semantic elements: some other <header> <nav> <section> <article> <aside> <figure> <figcaption> <footer> <details> <summary> <mark> <time>

CSS for Styling CS380

CSS for Styling CS380 1 CSS for Styling The good, the bad and the 2 ugly! shashdot. News for nerds!! You will never, ever be bored here!

More information

CSC 443: Web Programming

CSC 443: Web Programming 1 CSC 443: Web Programming Haidar Harmanani Department of Computer Science and Mathematics Lebanese American University Byblos, 1401 2010 Lebanon CSC443: Web Programming 2 for Styling The good, the bad

More information

CSC 443: Web Programming

CSC 443: Web Programming 1 CSC 443: Web Programming Haidar Harmanani Department of Computer Science and Mathematics Lebanese American University Byblos, 1401 2010 Lebanon 2 Basic Haidar Harmanani Department of Computer Science

More information

More CSS. <link href="filename" type="text/css" rel="stylesheet" /> CS380

More CSS. <link href=filename type=text/css rel=stylesheet /> CS380 1 More CSS HTML id attribute 2 coding Horror! Coding Horror! our mission is to combine programming and human factors

More information

EECS1012. Net-centric Introduction to Computing. Lecture 2: HTML

EECS1012. Net-centric Introduction to Computing. Lecture 2: HTML EECS1012 Net-centric Introduction to Computing Lecture 2: Acknowledgements Contents are adapted from web lectures for Web Programming Step by Step, by M. Stepp, J. Miller, and V. Kirst Slides have been

More information

EECS1012. Net-centric Introduction to Computing. Lecture 3: CSS for Styling

EECS1012. Net-centric Introduction to Computing. Lecture 3: CSS for Styling EECS1012 Net-centric Introduction to Computing Lecture 3: CSS for Styling Acknowledgements Contents are adapted from web lectures for Web Programming Step by Step, by M. Stepp, J. Miller, and V. Kirst.

More information

Salvedicta. - Hans Selye CSC 210

Salvedicta. - Hans Selye CSC 210 Salvedicta 1 "Find your own stress level the speed at which you can run toward your own goal. Make sure that both the stress level and the goal are really your own, and not imposed upon you by society,

More information

Salvedicta. Good judgment comes from experience Experience comes from bad judgment. CSC 210

Salvedicta. Good judgment comes from experience Experience comes from bad judgment. CSC 210 Salvedicta 1 Good judgment comes from experience Experience comes from bad judgment. 2 More CSS Announcements 3 Assignment 1 Due:??? Git Working

More information

CSc 337 LECTURE 3: CSS

CSc 337 LECTURE 3: CSS CSc 337 LECTURE 3: CSS The bad way to produce styles welcome to Greasy Joe's. You will never, ever, ever beat our

More information

Lecture 2 HTML. April 11 th, Web Application Development CS 228 Web Development CS 303

Lecture 2 HTML. April 11 th, Web Application Development CS 228 Web Development CS 303 Lecture 2 HTML April 11 th, 2015 Web Application Development CS 228 Web Development CS 303 Fall 2015 numangift.wordpress.com/web-development-spring-2015 Hypertext Markup Language (HTML) describes the content

More information

Basic Web Pages with XHTML (and a bit of CSS) CSE 190 M (Web Programming), Spring 2008 University of Washington Reading: Chapter 1, sections

Basic Web Pages with XHTML (and a bit of CSS) CSE 190 M (Web Programming), Spring 2008 University of Washington Reading: Chapter 1, sections Basic Web Pages with XHTML (and a bit of CSS) CSE 190 M (Web Programming), Spring 2008 University of Washington Reading: Chapter 1, sections 1.1-1.3 Except where otherwise noted, the contents of this presentation

More information

CSE 154 LECTURE 3: MORE CSS

CSE 154 LECTURE 3: MORE CSS CSE 154 LECTURE 3: MORE CSS Cascading Style Sheets (CSS): ... ... HTML CSS describes the appearance and layout of information

More information

CSE 154 LECTURE 1: BASIC HTML AND CSS

CSE 154 LECTURE 1: BASIC HTML AND CSS CSE 154 LECTURE 1: BASIC HTML AND CSS Hypertext Markup Language (HTML) describes the content and structure of information on a web page not the same as the presentation (appearance on screen) surrounds

More information

Web Programming Step by Step

Web Programming Step by Step Web Programming Step by Step Lecture 2 HTML/CSS Basics Reading: Ch. 2, 3.1 Except where otherwise noted, the contents of this presentation are Copyright 2009 Marty Stepp and Jessica Miller. Basic HTML

More information

Appendix D CSS Properties and Values

Appendix D CSS Properties and Values HTML Appendix D CSS Properties and Values This appendix provides a brief review of Cascading Style Sheets (CSS) concepts and terminology, and lists CSS level 1 and 2 properties and values supported by

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference Inline Style Syntax: Introduction to Web Design CSS Reference Example: text Internal Style Sheet Syntax: selector {property: value; Example:

More information

Lecture Notes 2: Hypertext Markup Language (HTML)

Lecture Notes 2: Hypertext Markup Language (HTML) Page 1 Lecture Notes 2: Hypertext Markup Language (HTML) CSE 190 M (Web Programming), Spring 2007 University of Washington Reading: Sebesta Ch. 2 sections 2.1-2.4.5, 2.4.7-2.4.9, 2.5-2.6.1, 2.7-2.7.2 Hypertext

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

COSC 2206 Internet Tools. CSS Cascading Style Sheets

COSC 2206 Internet Tools. CSS Cascading Style Sheets COSC 2206 Internet Tools CSS Cascading Style Sheets 1 W3C CSS Reference The official reference is here www.w3.org/style/css/ 2 W3C CSS Validator You can upload a CSS file and the validator will check it

More information

Cascade Stylesheets (CSS)

Cascade Stylesheets (CSS) Previous versions: David Benavides and Amador Durán Toro (noviembre 2006) Last revision: Manuel Resinas (october 2007) Tiempo: 2h escuela técnica superior de ingeniería informática Departamento de Lenguajes

More information

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

<body bgcolor=  fgcolor=  link=  vlink=  alink= > These body attributes have now been deprecated, and should not be used in XHTML. CSS Formatting Background When HTML became popular among users who were not scientists, the limited formatting offered by the built-in tags was not enough for users who wanted a more artistic layout. Netscape,

More information

CSS Selectors. element selectors. .class selectors. #id selectors

CSS Selectors. element selectors. .class selectors. #id selectors CSS Selectors Patterns used to select elements to style. CSS selectors refer either to a class, an id, an HTML element, or some combination thereof, followed by a list of styling declarations. Selectors

More information

3.1 Introduction. 3.2 Levels of Style Sheets. - HTML is primarily concerned with content, rather than style. - There are three levels of style sheets

3.1 Introduction. 3.2 Levels of Style Sheets. - HTML is primarily concerned with content, rather than style. - There are three levels of style sheets 3.1 Introduction - HTML is primarily concerned with content, rather than style - However, tags have presentation properties, for which browsers have default values - The CSS1 cascading style sheet specification

More information

- HTML is primarily concerned with content, rather than style. - However, tags have presentation properties, for which browsers have default values

- HTML is primarily concerned with content, rather than style. - However, tags have presentation properties, for which browsers have default values 3.1 Introduction - HTML is primarily concerned with content, rather than style - However, tags have presentation properties, for which browsers have default values - The CSS1 cascading style sheet specification

More information

CSS: The Basics CISC 282 September 20, 2014

CSS: The Basics CISC 282 September 20, 2014 CSS: The Basics CISC 282 September 20, 2014 Style Sheets System for defining a document's style Used in many contexts Desktop publishing Markup languages Cascading Style Sheets (CSS) Style sheets for HTML

More information

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents 3.1 Introduction - The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS3 is on its way - CSSs provide the means to control and change presentation of HTML documents - CSS is not

More information

BIM222 Internet Programming

BIM222 Internet Programming BIM222 Internet Programming Week 7 Cascading Style Sheets (CSS) Adding Style to your Pages Part II March 20, 2018 Review: What is CSS? CSS stands for Cascading Style Sheets CSS describes how HTML elements

More information

Cascading Style Sheet Quick Reference

Cascading Style Sheet Quick Reference Computer Technology 8/9 Cascading Style Sheet Quick Reference Properties Properties are listed in alphabetical order. Each property has examples of possible values. Properties are not listed if they are

More information

CSS. Lecture 16 COMPSCI 111/111G SS 2018

CSS. Lecture 16 COMPSCI 111/111G SS 2018 CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS Styles A style changes the way the HTML code is displayed Same page displayed using different styles http://csszengarden.com Same page with a style sheet

More information

Reading 2.2 Cascading Style Sheets

Reading 2.2 Cascading Style Sheets Reading 2.2 Cascading Style Sheets By Multiple authors, see citation after each section What is Cascading Style Sheets (CSS)? Cascading Style Sheets (CSS) is a style sheet language used for describing

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 3 Cascading Style Sheets (CSS) Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you

More information

CSS Lecture 16 COMPSCI 111/111G SS 2018

CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS CSS Lecture 16 COMPSCI 111/111G SS 2018 Styles Astyle changes the way the HTML code is displayed Same page displayed using different styles Same page with a style sheet body font-family: sans-serif;

More information

3.1 Introduction. 3.2 Levels of Style Sheets. - The CSS1 specification was developed in There are three levels of style sheets

3.1 Introduction. 3.2 Levels of Style Sheets. - The CSS1 specification was developed in There are three levels of style sheets 3.1 Introduction - The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS2.1 reflects browser implementations - CSS3 is partially finished and parts are implemented in current browsers

More information

- The CSS1 specification was developed in CSS2 was released in CSS2.1 reflects browser implementations

- The CSS1 specification was developed in CSS2 was released in CSS2.1 reflects browser implementations 3.1 Introduction - The CSS1 specification was developed in 1996 - CSS2 was released in 1998 - CSS2.1 reflects browser implementations - CSS3 is partially finished and parts are implemented in current browsers

More information

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web HTML & CSS SWE 432, Fall 2017 Design and Implementation of Software for the Web HTML: HyperText Markup Language LaToza Language for describing structure of a document Denotes hierarchy of elements What

More information

IMY 110 Theme 6 Cascading Style Sheets

IMY 110 Theme 6 Cascading Style Sheets IMY 110 Theme 6 Cascading Style Sheets 1. Cascading Style Sheets 1.1. Cascading Style Sheets Up to now we have done styling by using the style attribute. e.g. paragraph What

More information

ID1354 Internet Applications

ID1354 Internet Applications ID1354 Internet Applications CSS Leif Lindbäck, Nima Dokoohaki leifl@kth.se, nimad@kth.se SCS/ICT/KTH What is CSS? - Cascading Style Sheets, CSS provide the means to control and change presentation of

More information

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions Text and Layout Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11 This presentation 344 345 Text in Graphics Maximum flexibility obtained by treating text as graphics and manipulating

More information

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Note: We skipped Study Guide 1. If you d like to review it, I place a copy here: https:// people.rit.edu/~nbbigm/studyguides/sg-1.docx

More information

Chapter 3 Style Sheets: CSS

Chapter 3 Style Sheets: CSS WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE JEFFREY C. JACKSON Chapter 3 Style Sheets: CSS 1 Motivation HTML markup can be used to represent Semantics: h1 means that an element is a top-level heading

More information

Introduction to Web Tech and Programming

Introduction to Web Tech and Programming Introduction to Web Tech and Programming Cascading Style Sheets Designed to facilitate separation of content and presentation from a document Allows easy modification of style for an entire page or an

More information

CSS مفاهیم ساختار و اصول استفاده و به کارگیری

CSS مفاهیم ساختار و اصول استفاده و به کارگیری CSS مفاهیم ساختار و اصول استفاده و به کارگیری Cascading Style Sheets A Cascading Style Sheet (CSS) describes the appearance of an HTML page in a separate document : مسایای استفاده از CSS It lets you separate

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

escuela técnica superior de ingeniería informática

escuela técnica superior de ingeniería informática Tiempo: 2h escuela técnica superior de ingeniería informática Previous versions: David Benavides and Amador Durán Toro (noviembre 2006) Manuel Resinas (october 2007) Last revision:pablo Fernandez, Cambios

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

CSS. https://developer.mozilla.org/en-us/docs/web/css

CSS. https://developer.mozilla.org/en-us/docs/web/css CSS https://developer.mozilla.org/en-us/docs/web/css http://www.w3schools.com/css/default.asp Cascading Style Sheets Specifying visual style and layout for an HTML document HTML elements inherit CSS properties

More information

Introduction to Multimedia. MMP100 Spring 2016 thiserichagan.com/mmp100

Introduction to Multimedia. MMP100 Spring 2016 thiserichagan.com/mmp100 Introduction to Multimedia MMP100 Spring 2016 profehagan@gmail.com thiserichagan.com/mmp100 Troubleshooting Check your tags! Do you have a start AND end tags? Does everything match? Check your syntax!

More information

CMPT 165: More CSS Basics

CMPT 165: More CSS Basics CMPT 165: More CSS Basics Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 14, 2011 1 The Favorites Icon The favorites icon (favicon) is the small icon you see

More information

CSS Cascading Style Sheets

CSS Cascading Style Sheets CSS Cascading Style Sheets site root index.html about.html services.html stylesheet.css images boris.jpg Types of CSS External Internal Inline External CSS An external style sheet is a text document with

More information

Parashar Technologies HTML Lecture Notes-4

Parashar Technologies HTML Lecture Notes-4 CSS Links Links can be styled in different ways. HTML Lecture Notes-4 Styling Links Links can be styled with any CSS property (e.g. color, font-family, background, etc.). a { color: #FF0000; In addition,

More information

Web Programming Step by Step

Web Programming Step by Step Web Programming Step by Step Lecture 5 Floating and Positioning Reading: 4.3-4.5 Except where otherwise noted, the contents of this presentation are Copyright 2009 Marty Stepp and Jessica Miller. 4.3:

More information

Page Layout. 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning

Page Layout. 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning Page Layout contents of this presentation are Copyright 2009 Marty Stepp and Jessica Miller 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning 2 1 4.1

More information

Controlling Appearance the Old Way

Controlling Appearance the Old Way Webpages and Websites CSS Controlling Appearance the Old Way Older webpages use predefined tags - - italic text; - bold text attributes - Tables (and a few other elements) use specialized

More information

HTML/XML. HTML Continued Introduction to CSS

HTML/XML. HTML Continued Introduction to CSS HTML/XML HTML Continued Introduction to CSS Entities Special Characters Symbols such as +, -, %, and & are used frequently. Not all Web browsers display these symbols correctly. HTML uses a little computer

More information

Lecture Notes 4b: CSS Classes. CSS class selectors. The HTML class attribute. CSE 190 M (Web Programming), Spring 2007 University of Washington

Lecture Notes 4b: CSS Classes. CSS class selectors. The HTML class attribute. CSE 190 M (Web Programming), Spring 2007 University of Washington Page 1 Lecture Notes 4b: CSS Classes CSE 190 M (Web Programming), Spring 2007 University of Washington Reading: Sebesta Ch. 3 sections 3.2-3.3, 3.4.2-3.4.4, 3.12 CSS class selectors p.special { background-color:

More information

Cascading Style Sheets

Cascading Style Sheets 4 TVEZEWXYHMNR LSTVSKVEQY-RJSVQEXMOENITSHTSVSZ RETVSNIOXIQ RERGSZER Q^)ZVSTWO LSWSGM PR LSJSRHYEVS^TS XYLPEZR LSQ WXE4VEL] 4VELE)9-RZIWXYNIQIHSZE% FYHSYGRSWXM CSS Cascading Style Sheets Lukáš Bařinka barinkl@fel.cvut.cz

More information

EECS1012. Net-centric Introduction to Computing. Lecture 5: Yet more CSS (Float and Positioning)

EECS1012. Net-centric Introduction to Computing. Lecture 5: Yet more CSS (Float and Positioning) EECS 1012 EECS1012 Net-centric Introduction to Computing Lecture 5: Yet more CSS (Float and Positioning) Acknowledgements Contents are adapted from web lectures for Web Programming Step by Step, by M.

More information

CSS Styles Quick Reference Guide

CSS Styles Quick Reference Guide Table 1: CSS Font and Text Properties Font & Text Properties Example(s) font-family Font or typeface font-family: Tahoma font-size Size of the font font-size: 12pt font-weight Normal or bold font-weight:

More information

8a. Cascading Style Sheet

8a. Cascading Style Sheet INFS 2150 Introduction to Web Development 8a. Cascading Style Sheet 1 Objectives Concepts of cascading style sheets (CSS). 3 ways of using CSS: inline styles, embedded styles, and external style sheet.

More information

Fundamentals of Web Programming a

Fundamentals of Web Programming a Fundamentals of Web Programming a Cascading Style Sheets Teodor Rus rus@cs.uiowa.edu The University of Iowa, Department of Computer Science a Copyright 2009 Teodor Rus. These slides have been developed

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

Assignments (4) Assessment as per Schedule (2)

Assignments (4) Assessment as per Schedule (2) Specification (6) Readability (4) Assignments (4) Assessment as per Schedule (2) Oral (4) Total (20) Sign of Faculty Assignment No. 02 Date of Performance:. Title: To apply various CSS properties like

More information

CSS: Cascading Style Sheets

CSS: Cascading Style Sheets What are Style Sheets CSS: Cascading Style Sheets Representation and Management of Data on the Internet, CS Department, Hebrew University, 2007 A style sheet is a mechanism that allows to specify how HTML

More information

Fundamentals: Client/Server

Fundamentals: Client/Server Announcements Class Web Site: http://www.cs.umd.edu/projects/passport/classes/summer2008/ You can find this link at the end of the main passport site http://www.cs.umd.edu/projects/passport/webpage/ E-mail

More information

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop="title">html 5</span> itemscopehttp://data-vocabulary.

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop=title>html 5</span> itemscopehttp://data-vocabulary. HTML-5.com HTML-5.com is an HTML User's Guide and quick reference of HTML elements and attributes for web developers who code HTML web pages, not only for HTML 5 but for HTML coding in general, with demos

More information

CASCADING STYLESHEETS

CASCADING STYLESHEETS CASCADING STYLESHEETS Cascading StyleSheets (CSS) has been mainly created because HTML is just not the right tool for precision and flexibility. HTML is not a very effective for designing web pages. Most

More information

Review Question 1. Which tag is used to create a link to another page? 1. <p> 2. <li> 3. <a> 4. <em>

Review Question 1. Which tag is used to create a link to another page? 1. <p> 2. <li> 3. <a> 4. <em> Introduction to CSS Review Question 1 Which tag is used to create a link to another page? 1. 2. 3. 4. Review Question 1 Which tag is used to create a link to another page? 1. 2.

More information

INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations

INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations Hun Myoung Park (1/26/2019) Cascading Style Sheets: 1 INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations ADC5030401 (2 Credits) Introduction

More information

Session 4. Style Sheets (CSS) Reading & References. A reference containing tables of CSS properties

Session 4. Style Sheets (CSS) Reading & References.   A reference containing tables of CSS properties Session 4 Style Sheets (CSS) 1 Reading Reading & References en.wikipedia.org/wiki/css Style Sheet Tutorials www.htmldog.com/guides/cssbeginner/ A reference containing tables of CSS properties web.simmons.edu/~grabiner/comm244/weekthree/css-basic-properties.html

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 3 Configuring Color and Text with CSS Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

CMPT 165 Advanced XHTML & CSS Part 3

CMPT 165 Advanced XHTML & CSS Part 3 CMPT 165 Advanced XHTML & CSS Part 3 Oct 15 th, 2015 Today s Agenda Quick Recap of last week: Tree diagram Contextual selectors CSS: Inheritance & Specificity Review 1 exam question Q/A for Assignment

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Downloads: Google Chrome Browser (Free) - Adobe Brackets (Free) -

Downloads: Google Chrome Browser (Free) -   Adobe Brackets (Free) - Week One Tools The Basics: Windows - Notepad Mac - Text Edit Downloads: Google Chrome Browser (Free) - www.google.com/chrome/ Adobe Brackets (Free) - www.brackets.io Our work over the next 6 weeks will

More information

Web Design and Development Tutorial 03

Web Design and Development Tutorial 03 Table of Contents Web Design & Development - Tutorial 03... 2 Using and Applying CSS to XHTML... 2 Conventions... 2 What you need for this tutorial... 2 Common Terminology... 3 Parent / Child Elements...

More information

Cascading Style Sheets (CSS)

Cascading Style Sheets (CSS) Cascading Style Sheets (CSS) Mendel Rosenblum 1 Driving problem behind CSS What font type and size does introduction generate? Answer: Some default from the browser (HTML tells what browser how)

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

CS105 Course Reader Appendix A: HTML Reference

CS105 Course Reader Appendix A: HTML Reference Stanford CS106E Young CS105 Course Reader Appendix A: HTML Reference Tag Index by Section The tags are listed in one of nine sections as shown below: Character Appearance Elements , Bold

More information

GoSquared Equally Rounded Corners Equally Rounded Corners -webkit-border-radius -moz-border-radius border-radius Box Shadow Box Shadow -webkit-box-shadow x-offset, y-offset, blur, color Webkit Firefox

More information

INTRODUCTION TO HTML5! HTML5 Page Structure!

INTRODUCTION TO HTML5! HTML5 Page Structure! INTRODUCTION TO HTML5! HTML5 Page Structure! What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML came in 1999. The web has changed a lot since

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Web Engineering CSS. By Assistant Prof Malik M Ali

Web Engineering CSS. By Assistant Prof Malik M Ali Web Engineering CSS By Assistant Prof Malik M Ali Overview of CSS CSS : Cascading Style Sheet a style is a formatting rule. That rule can be applied to an individual tag element, to all instances of a

More information

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student Welcome Please sit on alternating rows powered by lucid & no.dots.nl/student HTML && CSS Workshop Day Day two, November January 276 powered by lucid & no.dots.nl/student About the Workshop Day two: CSS

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

More information

Adding CSS to your HTML

Adding CSS to your HTML Adding CSS to your HTML Lecture 3 CGS 3066 Fall 2016 September 27, 2016 Making your document pretty CSS is used to add presentation to the HTML document. We have seen 3 ways of adding CSS. In this lecture,

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

Module 2 (VII): CSS [Part 4]

Module 2 (VII): CSS [Part 4] INTERNET & WEB APPLICATION DEVELOPMENT SWE 444 Fall Semester 2008-2009 (081) Module 2 (VII): CSS [Part 4] Dr. El-Sayed El-Alfy Computer Science Department King Fahd University of Petroleum and Minerals

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

1 of 7 11/12/2009 9:29 AM

1 of 7 11/12/2009 9:29 AM 1 of 7 11/12/2009 9:29 AM Home Beginner Tutorials First Website Guide HTML Tutorial CSS Tutorial XML Tutorial Web Host Guide SQL Tutorial Advanced Tutorials Javascript Tutorial PHP Tutorial MySQL Tutorial

More information

CSS Tutorial Part 1: Introduction: A. Adding Style to a Web Page (3 options):

CSS Tutorial Part 1: Introduction: A. Adding Style to a Web Page (3 options): CSS Tutorial Part 1: Introduction: CSS adds style to tags in your html page. With HTML you told the browser what things were (e.g., this is a paragraph). Now you are telling the browser how things look

More information

CSS. Text & Font Properties. Copyright DevelopIntelligence LLC

CSS. Text & Font Properties. Copyright DevelopIntelligence LLC CSS Text & Font Properties 1 text-indent - sets amount of indentation for first line of text value: length measurement inherit default: 0 applies to: block-level elements and table cells inherits: yes

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Outline. Link HTML With Style Sheets &6&7XWRULDO &66 ;+70/ (GZDUG;LD

Outline. Link HTML With Style Sheets &6&7XWRULDO &66 ;+70/ (GZDUG;LD &6&7XWRULDO &66 ;+70/ (GZDUG;LD Outline CSS Link XHTML With Style Sheets, Class/ID selectors, Pseudo-class/element, Color values, Length units, Text, Font, Lists, Padding/border/margin, Floating/clearing,

More information

Learning Objectives. Review html Learn to write a basic webpage in html Understand what the basic building blocks of html are

Learning Objectives. Review html Learn to write a basic webpage in html Understand what the basic building blocks of html are HTML CSCI311 Learning Objectives Review html Learn to write a basic webpage in html Understand what the basic building blocks of html are HTML: Hypertext Markup Language HTML5 is new standard that replaces

More information

DAY 4. Coding External Style Sheets

DAY 4. Coding External Style Sheets DAY 4 Coding External Style Sheets LESSON LEARNING TARGETS I can code and apply an embedded style sheet to a Web page. I can code and apply an external style sheet to multiple Web pages. I can code and

More information

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources HTML + CSS ScottyLabs WDW OVERVIEW What are HTML and CSS? How can I use them? WHAT ARE HTML AND CSS? HTML - HyperText Markup Language Specifies webpage content hierarchy Describes rough layout of content

More information

**Method 3** By attaching a style sheet to your web page, and then placing all your styles in that new style sheet.

**Method 3** By attaching a style sheet to your web page, and then placing all your styles in that new style sheet. CSS Tutorial Part 1: Introduction: CSS adds style to tags in your html page. With HTML you told the browser what things were (e.g., this is a paragraph). Now you are telling the browser how things look

More information

HTML TUTORIAL ONE. Understanding What XHTML is Not

HTML TUTORIAL ONE. Understanding What XHTML is Not HTML TUTORIAL ONE Defining Blended HTML, XHTML and CSS HTML: o Language used to create Web pages o Create code to describe structure of a Web page XHTM: o Variation of HTML o More strictly defines how

More information