SlideShare a Scribd company logo
Web Page structure
<html>
<meta http-equiv="Content-Type"
content="text/html; charset=UTF-8" />
<link href="style.css" rel="stylesheet"
type="text/css" />
<link href="style.css" rel="stylesheet"
type="text/css" />
<title> F</title>
<body>
…………… F
</body>
</html>
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Web Page structure
F F F tag body
<meta http-equiv="Content-Type"
content="text/html; charset=UTF-8" />
F ก F PHP
<link href="style.css" rel="stylesheet"
type="text/css" />
ก style Fก ก file style.css
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Tag div span
F F F ก ˈ F F
<div> </div>,<span> </span>
Attribute align ก F F F F (left) ก
(center) (right)(center) (right)
<span>span1</span><span>span2</span>
<div>div2</div><div>div1</div>
ก F F F ก F tag div span
div F F tag F F span F F
F tag F
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Style Sheet
Style Sheet ˈ F ก .css F F
.class name
{
attribute:attribute value;attribute:attribute value;
attribute:attribute value;
}
class name ก style Fก div ก span
ก <div class=“class name”></div>
<span class=“class name”></span>
<a class=“class name” ></a>
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Style Sheet
tag name
{
attribute:attribute value;
attribute:attribute value;attribute:attribute value;
}
ก style tag name tag name ก style
attribute ก
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Style Sheet
F style sheet tag F F attribute style=“”
<tag name style=“attribute:attribute value” >
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Font
color: ก
font-size: ก
font-family: font
text-decoration: F F ˈ none ก F F F F F ˈtext-decoration: F F ˈ none ก F F F F F ˈ
underline F F ก
font-style: F F ˈ italic F ก
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Font
<link href="style_font.css" rel="stylesheet"
type="text/css" />
<div class="style1">Style 1</div>
<center>Style 2</center><center>Style 2</center>
<a href="http://google.co.th" style="color:green;text-
decoration:none" >Google</a>
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Font
file style_font.css
.style1
{
font-family:verdana;
font-size:36px;font-size:36px;
color:#7D7D7D;
font-style: italic;
text-decoration:underline;
}
center
{
font-size:24px;
color:red;
}
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
Font
<div class="style1">Style 1</div>
ก style .style1 F style_font.css
<center>Style 2</center>
ก style center tag name F F tagก style center tag name F F tag
center ก tag ก style ก
<a href="http://google.co.th" style="color:green;text-
decoration:none" >Google</a>
ก style tag F attribute style=“”
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F link F mouse
ก :hover F tag name class name style
tag a F
a:hover
{{
color:gray;
text-decoration:underline;
}
ก ก F mouse tag a F F ก ˈ F F F
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F link F mouse
.a_class:hover
{
font-size:14px;
font-style:italic;font-style:italic;
}
ก F tag a attribute class=“a_class” mouse F
ก ˈ 14 ˈ
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F link F mouse
<link href="link_style.css" rel="stylesheet" type="text/css"
/>
<a href="#" class="a_class">Link1</a><br />
<a href="#">Link2</a><a href="#">Link2</a>
href="#" link F ˆ
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F link F mouse
F link_style.css
a
{
color:black;
text-decoration:none;
}
a:hover
{
color:blue;
text-decoration:underline;
}
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F link F mouse
.a_class
{
color:green;
font-size:12px;font-size:12px;
}
.a_class:hover
{
font-size:14px;
font-style:italic;
}
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F F F margin
margin-left: ก F F ก F F
margin-right: ก F F ก F
margin-top: ก F F ก F
margin-bottom: ก F F ก F Fmargin-bottom: ก F F ก F F
Attribute value ก ก F ก F F ก
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F F F margin
<div style="margin-left:90px">margin-left</div>
<div style="margin-top:90px;margin-
left:90px">margin_top</div>
margin-left:90px ก ก F F tag div F ก F 90 ก
margin-top:90px; ก ก F F tag div F ก F 90 ก
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F F F margin
ก F F F F ก F F web browser F ก
style F tag body
<body style="margin-left:0px;margin-top:0px;">
BodyBody
</body>
F style="margin-left:0px;margin-top:0px;“ ก
F ก F
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
ก F tag
background-color: ก Fก tag
F <body style="background-color:black;"></body>
ก ก F F ˈ
background-image: ก F ˈ ก Fbackground-image: ก F ˈ ก F
Attribute value ˈ url( F ) ก
background-repeat: ก F ก x
ก y attribute value ˂ repeat-x, repeat-y
width: ก ก F tag F ˈ px %
height: ก Fก tag F ˈ px %
F link F mouse
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
F ก F Header Fก Web Page
<html>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620"
/>
<title> ก </title>
<body style="margin-left:0px;margin-top:0px;">
<link href="background2.css" rel="stylesheet" type="text/css" />
<div class="back_ground_header" align="center">
<br />
<br />
<br />
<span class="font_header"> ก </span>
</div>
</body>
</html>
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
F ก F Header Fก Web Page
F background2.css
.back_ground_header
{
background-image:url(images/bg.jpg);
background-repeat:repeat-x;background-repeat:repeat-x;
height:200px;
}
.font_header
{
color:white;
font-size:36px
}
projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)

More Related Content

What's hot

Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本
a5494535
 
Guía de uso de ISI WOK (ISI Web of Knowledge)
Guía de uso de ISI WOK (ISI Web of Knowledge)Guía de uso de ISI WOK (ISI Web of Knowledge)
Guía de uso de ISI WOK (ISI Web of Knowledge)
Marta Domínguez-Senra
 
Gravity Forms Hooks & Filters
Gravity Forms Hooks & FiltersGravity Forms Hooks & Filters
Gravity Forms Hooks & Filters
iamdangavin
 
PHP an intro -1
PHP an intro -1PHP an intro -1
PHP an intro -1
Kanchilug
 
Php Calling Operators
Php Calling OperatorsPhp Calling Operators
Php Calling Operators
mussawir20
 

What's hot (20)

Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本Simple Blue Blog Template XML 的副本
Simple Blue Blog Template XML 的副本
 
Using Geeklog as a Web Application Framework
Using Geeklog as a Web Application FrameworkUsing Geeklog as a Web Application Framework
Using Geeklog as a Web Application Framework
 
PHP「参照渡しできるよ」(君の考えている参照渡しと同じとは言ってない)
PHP「参照渡しできるよ」(君の考えている参照渡しと同じとは言ってない)PHP「参照渡しできるよ」(君の考えている参照渡しと同じとは言ってない)
PHP「参照渡しできるよ」(君の考えている参照渡しと同じとは言ってない)
 
Word Camp Fukuoka2010
Word Camp Fukuoka2010Word Camp Fukuoka2010
Word Camp Fukuoka2010
 
Php with my sql
Php with my sqlPhp with my sql
Php with my sql
 
Introducation to php for beginners
Introducation to php for beginners Introducation to php for beginners
Introducation to php for beginners
 
Guía de uso de ISI WOK (ISI Web of Knowledge)
Guía de uso de ISI WOK (ISI Web of Knowledge)Guía de uso de ISI WOK (ISI Web of Knowledge)
Guía de uso de ISI WOK (ISI Web of Knowledge)
 
Can WordPress really do that? A case study of vierderduer.no
Can WordPress really do that? A case study of vierderduer.noCan WordPress really do that? A case study of vierderduer.no
Can WordPress really do that? A case study of vierderduer.no
 
Php Rss
Php RssPhp Rss
Php Rss
 
Clever Joomla! Templating Tips and Tricks
Clever Joomla! Templating Tips and TricksClever Joomla! Templating Tips and Tricks
Clever Joomla! Templating Tips and Tricks
 
WordPress overloading Gravityforms using hooks, filters and extending classes
WordPress overloading Gravityforms using hooks, filters and extending classes WordPress overloading Gravityforms using hooks, filters and extending classes
WordPress overloading Gravityforms using hooks, filters and extending classes
 
Gravity Forms Hooks & Filters
Gravity Forms Hooks & FiltersGravity Forms Hooks & Filters
Gravity Forms Hooks & Filters
 
Cloud Entwicklung mit Apex
Cloud Entwicklung mit ApexCloud Entwicklung mit Apex
Cloud Entwicklung mit Apex
 
2016 First steps with Angular 2 – enterjs
2016 First steps with Angular 2 – enterjs2016 First steps with Angular 2 – enterjs
2016 First steps with Angular 2 – enterjs
 
Zend Lab
Zend LabZend Lab
Zend Lab
 
PHP an intro -1
PHP an intro -1PHP an intro -1
PHP an intro -1
 
Php Calling Operators
Php Calling OperatorsPhp Calling Operators
Php Calling Operators
 
Resultados sobre Policultivo de Tilápias e Camarões de Água Doce
Resultados sobre Policultivo de Tilápias e Camarões de Água Doce Resultados sobre Policultivo de Tilápias e Camarões de Água Doce
Resultados sobre Policultivo de Tilápias e Camarões de Água Doce
 
symfony & jQuery (PUG)
symfony & jQuery (PUG)symfony & jQuery (PUG)
symfony & jQuery (PUG)
 
Slimme Joomla! Templating Tips en Truuks
Slimme Joomla! Templating Tips en TruuksSlimme Joomla! Templating Tips en Truuks
Slimme Joomla! Templating Tips en Truuks
 

Similar to Seasion5

計算機概論20161205
計算機概論20161205計算機概論20161205
計算機概論20161205
志宇 許
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
Joao Lucas Santana
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
Coulawrence
 

Similar to Seasion5 (20)

جيفيرا باي الساحل الشمالي
جيفيرا باي الساحل الشماليجيفيرا باي الساحل الشمالي
جيفيرا باي الساحل الشمالي
 
Css by tanbircox
Css by tanbircoxCss by tanbircox
Css by tanbircox
 
計算機概論20161205
計算機概論20161205計算機概論20161205
計算機概論20161205
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
 
Html5
Html5Html5
Html5
 
HTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.pptHTML Web Devlopment presentation css.ppt
HTML Web Devlopment presentation css.ppt
 
css.ppt
css.pptcss.ppt
css.ppt
 
css.ppt
css.pptcss.ppt
css.ppt
 
Oracle Application Express & jQuery Mobile - OGh Apex Dag 2012
Oracle Application Express & jQuery Mobile - OGh Apex Dag 2012Oracle Application Express & jQuery Mobile - OGh Apex Dag 2012
Oracle Application Express & jQuery Mobile - OGh Apex Dag 2012
 
Laravel 로 배우는 서버사이드 #5
Laravel 로 배우는 서버사이드 #5Laravel 로 배우는 서버사이드 #5
Laravel 로 배우는 서버사이드 #5
 
I pv6+at+caribbean+sector
I pv6+at+caribbean+sectorI pv6+at+caribbean+sector
I pv6+at+caribbean+sector
 
Critical Rendering Path
Critical Rendering PathCritical Rendering Path
Critical Rendering Path
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
 
High Performance Web Components
High Performance Web ComponentsHigh Performance Web Components
High Performance Web Components
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
Mobile themes, QR codes, and shortURLs
Mobile themes, QR codes, and shortURLsMobile themes, QR codes, and shortURLs
Mobile themes, QR codes, and shortURLs
 
Diazo: Bridging Designers and Programmers
Diazo: Bridging Designers and ProgrammersDiazo: Bridging Designers and Programmers
Diazo: Bridging Designers and Programmers
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
WordPress&映像配信セミナー+さぶみっと!オフ会 - 第1回 さぶみっと! WEB制作セミナー Supported by NTTスマートコネクト
WordPress&映像配信セミナー+さぶみっと!オフ会 - 第1回 さぶみっと! WEB制作セミナー Supported by NTTスマートコネクトWordPress&映像配信セミナー+さぶみっと!オフ会 - 第1回 さぶみっと! WEB制作セミナー Supported by NTTスマートコネクト
WordPress&映像配信セミナー+さぶみっと!オフ会 - 第1回 さぶみっと! WEB制作セミナー Supported by NTTスマートコネクト
 
crtical points for customizing Joomla templates
crtical points for customizing Joomla templatescrtical points for customizing Joomla templates
crtical points for customizing Joomla templates
 

Recently uploaded

Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
Bhaskar Mitra
 

Recently uploaded (20)

De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
UiPath New York Community Day in-person event
UiPath New York Community Day in-person eventUiPath New York Community Day in-person event
UiPath New York Community Day in-person event
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
КАТЕРИНА АБЗЯТОВА «Ефективне планування тестування ключові аспекти та практ...
КАТЕРИНА АБЗЯТОВА  «Ефективне планування тестування  ключові аспекти та практ...КАТЕРИНА АБЗЯТОВА  «Ефективне планування тестування  ключові аспекти та практ...
КАТЕРИНА АБЗЯТОВА «Ефективне планування тестування ключові аспекти та практ...
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 

Seasion5

  • 1. Web Page structure <html> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link href="style.css" rel="stylesheet" type="text/css" /> <link href="style.css" rel="stylesheet" type="text/css" /> <title> F</title> <body> …………… F </body> </html> projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 2. Web Page structure F F F tag body <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> F ก F PHP <link href="style.css" rel="stylesheet" type="text/css" /> ก style Fก ก file style.css projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 3. Tag div span F F F ก ˈ F F <div> </div>,<span> </span> Attribute align ก F F F F (left) ก (center) (right)(center) (right) <span>span1</span><span>span2</span> <div>div2</div><div>div1</div> ก F F F ก F tag div span div F F tag F F span F F F tag F projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 4. Style Sheet Style Sheet ˈ F ก .css F F .class name { attribute:attribute value;attribute:attribute value; attribute:attribute value; } class name ก style Fก div ก span ก <div class=“class name”></div> <span class=“class name”></span> <a class=“class name” ></a> projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 5. Style Sheet tag name { attribute:attribute value; attribute:attribute value;attribute:attribute value; } ก style tag name tag name ก style attribute ก projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 6. Style Sheet F style sheet tag F F attribute style=“” <tag name style=“attribute:attribute value” > projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 7. Font color: ก font-size: ก font-family: font text-decoration: F F ˈ none ก F F F F F ˈtext-decoration: F F ˈ none ก F F F F F ˈ underline F F ก font-style: F F ˈ italic F ก projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 8. Font <link href="style_font.css" rel="stylesheet" type="text/css" /> <div class="style1">Style 1</div> <center>Style 2</center><center>Style 2</center> <a href="http://google.co.th" style="color:green;text- decoration:none" >Google</a> projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 10. Font <div class="style1">Style 1</div> ก style .style1 F style_font.css <center>Style 2</center> ก style center tag name F F tagก style center tag name F F tag center ก tag ก style ก <a href="http://google.co.th" style="color:green;text- decoration:none" >Google</a> ก style tag F attribute style=“” projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 11. ก F link F mouse ก :hover F tag name class name style tag a F a:hover {{ color:gray; text-decoration:underline; } ก ก F mouse tag a F F ก ˈ F F F projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 12. ก F link F mouse .a_class:hover { font-size:14px; font-style:italic;font-style:italic; } ก F tag a attribute class=“a_class” mouse F ก ˈ 14 ˈ projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 13. ก F link F mouse <link href="link_style.css" rel="stylesheet" type="text/css" /> <a href="#" class="a_class">Link1</a><br /> <a href="#">Link2</a><a href="#">Link2</a> href="#" link F ˆ projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 14. ก F link F mouse F link_style.css a { color:black; text-decoration:none; } a:hover { color:blue; text-decoration:underline; } projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 15. ก F link F mouse .a_class { color:green; font-size:12px;font-size:12px; } .a_class:hover { font-size:14px; font-style:italic; } projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 16. ก F F F margin margin-left: ก F F ก F F margin-right: ก F F ก F margin-top: ก F F ก F margin-bottom: ก F F ก F Fmargin-bottom: ก F F ก F F Attribute value ก ก F ก F F ก projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 17. ก F F F margin <div style="margin-left:90px">margin-left</div> <div style="margin-top:90px;margin- left:90px">margin_top</div> margin-left:90px ก ก F F tag div F ก F 90 ก margin-top:90px; ก ก F F tag div F ก F 90 ก projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 18. ก F F F margin ก F F F F ก F F web browser F ก style F tag body <body style="margin-left:0px;margin-top:0px;"> BodyBody </body> F style="margin-left:0px;margin-top:0px;“ ก F ก F projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 19. ก F tag background-color: ก Fก tag F <body style="background-color:black;"></body> ก ก F F ˈ background-image: ก F ˈ ก Fbackground-image: ก F ˈ ก F Attribute value ˈ url( F ) ก background-repeat: ก F ก x ก y attribute value ˂ repeat-x, repeat-y width: ก ก F tag F ˈ px % height: ก Fก tag F ˈ px % F link F mouse projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 20. F ก F Header Fก Web Page <html> <meta http-equiv="Content-Type" content="text/html; charset=TIS-620" /> <title> ก </title> <body style="margin-left:0px;margin-top:0px;"> <link href="background2.css" rel="stylesheet" type="text/css" /> <div class="back_ground_header" align="center"> <br /> <br /> <br /> <span class="font_header"> ก </span> </div> </body> </html> projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)
  • 21. F ก F Header Fก Web Page F background2.css .back_ground_header { background-image:url(images/bg.jpg); background-repeat:repeat-x;background-repeat:repeat-x; height:200px; } .font_header { color:white; font-size:36px } projectsoft.biz ก Web Application F PHP MySQL Ajax(jquery)