140 likes | 256 Vues
This talk, presented by Allen Green and C.L. Huang, focuses on the essentials of front-end development. It covers fundamental concepts such as client-server architecture, web applications, and popular web technologies, including HTML, CSS, JavaScript, and PHP. Attendees will explore how browsers work (e.g., Chrome, Firefox), the role of web servers (e.g., Apache, IIS), and the process of client-server interactions. With practical examples, this introduction aims to equip aspiring developers with the knowledge to navigate the world of front-end technologies effectively.
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!