Download presentation
Presentation is loading. Please wait.
Published byDennis Stafford Modified over 9 years ago
1
Form Tag How to use Form Tag Something NEW ? PARAMETER Attribute NAME Specifies the name for a form To specify which form to submit with JavaScript, this name attribute should be used. http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_name
2
Form Tag How to use Form Tag Something NEW ? PARAMETER Attribute TARGET Deprecated Specifies where to open the action URL value : _blank, _self, _parent, _top, framename http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_method
3
Form Tag How to use Form Tag Something NEW ? PARAMETER Attribute ACTION Specifies where to send the form-data when a form is submitted value : URL http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_submit
4
Form Tag How to use Form Tag Something NEW ? PARAMETER Attribute METHOD Specifies how to send form-data value : get / post get : based on URL. ex) http://sparcs.org/test?id=sunguard&st_nu=20110125 post : included in HTTP header. ex) http://sparcs.org/test http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_form_method
5
HTML & CSS SPARCS 11 SunGuard WHAT ? WHY ? HOW ? Date 2011. 11. 07. Basic of Basic
6
WHAT is the CSS ? The Concept of the CSS CSS (Cascading Style Sheets) HTML & CSS CSS format file
7
WHAT is the CSS ? The Concept of the CSS CSS (Cascading Style Sheets) HTML & CSS HTML + CSS + JavaScript = Web Page StructureStyle Sheet CSS
8
WHY we use the CSS The Reason of the CSS HTML & CSS Flexibility file01.html file03.html file02.html file04.html file06.html file05.html for-all.css for-56.css for-34.css file01.css file03.css file02.css file04.css file06.css file05.css
9
WHY we use the CSS The Reason of the CSS HTML & CSS Flexibility By changing CSS, we can Change the layout Design. EASILY.
10
WHY we use the CSS The Reason of the CSS HTML & CSS Rendering By separating the HTML & the CSS,
11
WHY we use the CSS The Reason of the CSS HTML & CSS Rendering By separating the HTML & the CSS, makes SHORTER CODE
12
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML Inline Style Sheet Embedded Style Sheet ( Internal Style Sheet ) External Style Sheet ( Linking Style Sheet ) http://www.w3schools.com/css/css_howto.asp
13
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML Inline Style Sheet
14
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML Embedded ( Internal ) Style Sheet
15
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML External ( Linking ) Style Sheet
16
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax h1 { color: blue; font-size: 12px; } Selector
17
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax Declaration for color h1 { color: blue; font-size: 12px; } Declaration for font-size
18
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax (Color) Property h1 { color: blue; font-size: 12px; } (Font-Size) Property
19
h1 { color: blue; font-size: 12px; } HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax Value for Color Property for Font-Size
20
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax h1 { color: blue; font-size: 12px; } Selector Universal selectors Type selectors Descendant selectors Child selectors Adjacent sibling selectors Attribute selectors ID selectors Class selectors Element selectors
21
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax ID selectors #Id { declaration(s) } example
22
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax Class selectors.Class { declaration(s) } example
23
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax Element selectors Element { declaration(s) } example
24
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax
25
Next Time What we do next time HTML & CSS We will learn... How to Stylize HTML
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.