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.
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
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
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) post : included in HTTP header. ex)
HTML & CSS SPARCS 11 SunGuard WHAT ? WHY ? HOW ? Date Basic of Basic
WHAT is the CSS ? The Concept of the CSS CSS (Cascading Style Sheets) HTML & CSS CSS format file
WHAT is the CSS ? The Concept of the CSS CSS (Cascading Style Sheets) HTML & CSS HTML + CSS + JavaScript = Web Page StructureStyle Sheet CSS
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
WHY we use the CSS The Reason of the CSS HTML & CSS Flexibility By changing CSS, we can Change the layout Design. EASILY.
WHY we use the CSS The Reason of the CSS HTML & CSS Rendering By separating the HTML & the CSS,
WHY we use the CSS The Reason of the CSS HTML & CSS Rendering By separating the HTML & the CSS, makes SHORTER CODE
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 )
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML Inline Style Sheet
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML Embedded ( Internal ) Style Sheet
HOW to use the CSS The Way of using the CSS HTML & CSS HOW TO use the CSS with HTML External ( Linking ) Style Sheet
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax h1 { color: blue; font-size: 12px; } Selector
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
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
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
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
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax ID selectors #Id { declaration(s) } example
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax Class selectors.Class { declaration(s) } example
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax Element selectors Element { declaration(s) } example
HOW to use the CSS The Way of using the CSS HTML & CSS CSS Syntax
Next Time What we do next time HTML & CSS We will learn... How to Stylize HTML