140 likes | 245 Views
A. IMN. FRONT-END TECHNICAL TALK. Introduction to Front-end Development. Sharer / Allen-Green C.L. Huang CEO, IMNA Microsoft Student Partners, Taiwan Intern, Dep. Solar Energy System, Green Source Technology. Outline of Introduction. Web Site Web Application
E N D
A IMN FRONT-ENDTECHNICALTALK IntroductiontoFront-endDevelopment Sharer/Allen-GreenC.L.Huang CEO,IMNA MicrosoftStudentPartners,Taiwan Intern,Dep.SolarEnergySystem,GreenSourceTechnology
OutlineofIntroduction WebSite WebApplication IntroductiontoServer/Client
WebSite Yahoo,Google,etc. Browse Display Browser IE,Chrome,Firefox
WebServer Apache,IIS,Tomcat Request Response Client Browser,FlashGet,PPS,KKBOX
OutlineofEnvironment WebServer ScriptInterpreter DBMSServer Browser
DBMSServer ScriptInterpreter Extension WebServer Browser
OutlineofTechnical (X)HTML CSS JavaScript PHP/JSP/ASP.NET
WebServer (X)HTML Document Ex.EnterURLhttp://www.im.tku.edu.tw Browser
<html> <head> <style> body{ background:#000; } </style> <script> alert(“Hello”); </script> <body> <h1>HelloWeb!!</h1> </body> </html>
<html> <head> <style> body{ background:#000; } </style> <script> alert(“Hello”); </script> <body> <h1>HelloWeb!!</h1> </body> </html>
<html> <head> <style> body{ background:#ccc; } </style> <script> alert(“Hello”); </script> <body> <h1><?php$txt=“web”;echo“Hello$txt!!”;?></h1> </body> </html>
MySQL/DBMSServer PHP/Pre-Interpreter Apache/WebServer
Letgo tothe RealWorld!