introduction to web development1).pdfmohamad m. fouad it career fields ... • build your cv ... •...

29
Introduction to Web Development Mohamad M. Fouad

Upload: others

Post on 16-Jul-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Introduction to Web Development

Mohamad M. Fouad

Page 2: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

IT Career Fields

Software Development

Fundamentals of Web

HTTP Protocol

Layers of Web Page

HTML, CSS, JS, PHP, MySQL, AJAX

Study Plan

Page 3: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Any organization has the following: Computers Servers (Domain, Mail, ..etc) Network Database Applications Media Department

• Technical Support

• System Engineer

• Network Engineer

• Db Admin

• Software Engineer

• Graphics Designer

Page 4: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 5: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Network

Two or more computers connected togetherto share information and resources

Internet

The global system of interconnected computernetworks that use the internet protocol suite(TCP/IP) to link devices worldwide

Page 6: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Server

A computer providing a service to other computers likeweb server, mail server, file server, print server, ..etc

Client

A computer requesting a service from the server likemail client (outlook), chrome browser, ftp client, ..etc

Page 7: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Protocol

A set of rules that control the communicationbetween the client and the server

HTTP is the most popular protocol.

Page 8: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Tim Berners-Lee

Tim Berners-Lee is the inventor of World Wide Web. He implemented the first successful

communication between HTTP Client and server via Internet in Nov. 1989

HTTP = Hyper Text Transfer Protocol

HTTP Server (Web Server)

A server software that can satisfy HTTP requests. It can contain one or more websites.

Examples (Apache Server, IIS Server, nginX, …ect)

HTTP Client (Web browser)

Allows you to browse websites by sending HTTP requests to the web server and rendering the

response to you.

Page 9: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 10: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 11: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

ContentText, images, table, form, links, ..etc

PresentationHow the content will be displayed?

BehaviorInteractive, validation, effects, ..etc

Page 12: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 13: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 14: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Client-Side Scripting Language

Page 15: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 16: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 17: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 18: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

• Server-Side Scripting Language

• Powerful tool for making dynamic and interactive web application

• Code is executed on the web server and the result is returned back to the browser.

• Easy to learn

• Widely used, free and efficient

Page 19: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 20: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 21: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

• Free, Open Source PHP web framework• MVC Framework

Page 22: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

• Web Application framework developed by Microsoft

• Free & Open Source

• Well-organized

• You write C# Code

Page 23: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Traditional web application

Page 24: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

AJAX Request

Page 25: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:
Page 26: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

Language Estimated Days

HTML 7

CSS 7

JavaScript 14

jQuery 5

PHP 30

MySQL 15

C# 30

ASP.NET MVC 20

SQL Server 15

AJAX 3

Page 27: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

• www.w3schools.com

• www.tutorialspoint.com

• https://developer.mozilla.org/en-US/docs/Learn

• http://php.net/

• https://www.tutorialsteacher.com/

Page 28: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title:

• Start learning now! (do not waste more time)

• Write code every day

• Work on a project

• Build your CV

• ITI, MCIT scholarship

• Freelance websites (oDesk, getaFreelancer, projectforhire, khamsat, Mostaql)

• Offer your service at the beginning

• Join Open Source projects (GitHub)

Page 29: Introduction to Web Development1).pdfMohamad M. Fouad IT Career Fields ... • Build your CV ... • Offer your service at the beginning • Join Open Source projects (GitHub) Title: