What's new

Closed pano gumawa ng website ?

Status
Not open for further replies.
mejo po broad yung tanong mo dude.. pero eto.

one must learn how to create web site in this order:
1. Basic 3
html -> html 5 - for structure / content
css -> css 3 - for aesthetic design
javascript -> jquery(optional but necessary for your career's sake) - for dynamic content, client side scripting
after ng tatlong yan, branching na from there. mamimili ka depende kung san ka magaling para to sa server side scripting o yung tinatawag na front end

2. Front End
* php - may sarili tong programming language, easy to learn. either xampp or wamp ang pwede mong gamiting server dito
* classic asp - mejo hango sa vb6 ang language syntax and semantics, procedural din, IIS ang gagamitin mong server dito
* jsp - java ang ginagamit dito na language, gagamitin mo naman dito tomcat
* asp.NET - next generation ng classic asp. ang ginagamit na language dito ay C# and/or VB.NET. IIS din ang server para dito

-dito mo na din aaraling yung state management
-mga storage variables like
session, globals, cøøkíés, view state
-cryptography
ssl, hashing and encrypting

3. Back End
one must also learn the environment of the back end. TADAAA! yup, DATABASE.
* learn sql - yung basics nito ha. available sa w3school.
para sa advanced nyan, mamimili ka nanaman depende sa RDBMS na gagamitin mo
* T-SQL para sa sql server
* mysql -di ko masyado gamay to pero sapat nang may basic knowledge ka sa sql
* Oracle - aralin ang pagcreate ng procedures, functions, sequences, triggers, packages, meron ding mga ganyan sa kahit iba pang rdbms like sql server
*aralin ang rdbms
topics: tables, prodcedures, functions, primary keys, foreign keys, indexes, etc.
* embedded database: mga pwedeng iattach lang sa program:
- ms access, sqlite3
* server type: mga ginagamit talaga sa mga web sites kadalasan:
- sql server, oracle, mysql, postgre

4. optionals
- ajax - asynchronous process from client to server processing. REQUIRES javascript knowledge and at least one of the front end languages. kadalasan required to sa industry.

- mga shortcuts - hindi to advisable sa umpisa since masyado nitong iispoilin yung thrill ng pag aaral gumawa ng website. mahihirapan kang mag customize ng site sa huli kung aasa ka lang lagi sa mga gantong templated development at hindi mo alam yung basci structure ng web development.
- dreamweaver - almost drag and drop dito pero may coding pa din
- adobe muse
- mga online sites like wix
- bootstrap - for easy layouts and ready-made plugins like datepicker, accordion, and other plugins

-drupal, joomla and wordpress - pwedeng isa lang ang aralin, pwedeng lahat.

tip:
web page po muna bago web site.
mag start gumawa ng web page ng profile mo, then saka mag umpisang gumawa ng mga complicated sites nang dahan dahan.

enjoy learning and good luck
 
Basic HTML


<!DOCTYPE>
<title>HTML</title>
<html>
<body>
<h1 style="font-family:vernada">HTML</h1>
<p style="font-family:vernada">basic</p>
</body>
</html>

TAPOS
 
Status
Not open for further replies.

Similar threads

Back
Top