SlideShare a Scribd company logo
1 of 33
Download to read offline
Learn Now
Web System and
Technology I
by Rose Ann M. Inmenzo
Lessons Quizzes Tasks Assignments Rules
Web System and Technology I
This course deals with the design and development of Web pages and
Websites. Emphasis is on user-interface design, and scripts using
various open-source Web technologies. Topics include World Wide
Web, Hypertext Markup Language (HTML), Cascading Style Sheets
(CSS), and JavaScript.
Lessons Quizzes Tasks Rules
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
What is the Internet?
The Internet was derived from the word Interconnected NETwork. It is a globally connected system
that uses TCP/IP in transmitting data via various types of media. The network consists of millions of
private, public, academic, business, and government networks that are linked by a broad array of
electronic, wireless, and optical networking technologies.
How to access the Internet?
ISP (Internet Service Provider), is a commercial organization that provides data connection to the
subscribers allowing them to access the Internet through physical transport infrastructure. They
charge users whether households, businesses, and governments a monthly fee on a contractual
basis.
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Next
Uses of the Internet?
Quizzes Tasks Rules
Listed below are some common uses of the internet:
• Email and Personal Communication
• Research
• News
• Shopping
• Entertainment
• Banking
• Job Hunting
The Internet can be accessed anywhere by means of numerous ways, our mobile phones, data card,
handheld game consoles, and cellular routers can be connected to the internet wirelessly. Different
services of the internet may be available and can be done effectively including electronic mail.
Internet
World Wide Web
Principles of …
As mentioned earlier, IP is the key factor in the definition of the Internet. This HTTP is the key component in the definition of the
World Wide Web.
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Basic Internet Protocol
Quizzes Tasks Rules
A computer communication protocol refers to the ways in which devices can identify and
communicate with each other in order to serve some purposes.
• Internet Protocol (IP)
• Transmission Control Protocol (TCP)
• User Datagram Protocol (USD)
• Domain Name Service (DNS)
• Host name
• Higher-level Protocols
Next
Internet
World Wide Web
Principles of …
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
The World Wide Web
World Wide Web refers to the collection of information that is accessed via the internet, which we
usually tap into the browser. This used Hypertext Transfer Protocol (HTTP) which this HTTP is a
language used to transmit data to access information that lives on different networks.
It's a single HTML document that
can contain text, images, videos,
links, and other elements that can
be displayed in a web browser.
Quizzes Tasks Rules
WEBPAGE WEBSITE
A collection of interconnected webpages
that are related to each other and are
typically organized under a common
domain name.
Internet
World Wide Web
Principles of …
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Browser Rendering Engines
Quizzes Tasks Rules
Internet
World Wide Web
Principles of … The program that is responsible for converting HTML and CSS into what you see rendered on the
screen is called a rendering engine (also browser engine or layout engine). Browsers that you use on
desktop computers and mobile devices are made up of rendering engines as well as other code used
for their own user interfaces and functionality.
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
The Web Page Addresses
Quizzes Tasks Rules
Internet
World Wide Web
Principles of …
Every page and resource on the web has its own special address called a URL, which stands for
Uniform Resource Locator.
Parts of URL
A complete URL is generally made up of three components: the protocol, the site
name, and the absolute path to the document or resource, as shown below.
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
http://
Quizzes Tasks Rules
Internet
World Wide Web
Principles of …
The first thing the URL does is define the protocol that will be used for that particular transaction.
The letters “HTTP” let the server know to use Hypertext Transfer Protocol, or get into “web mode.”
You may also see a URL beginning with https://, which I explain in the “HTTPS, The Secure Web
Protocol” sidebar.
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
www.example.com
Quizzes Tasks Rules
Internet
World Wide Web
Principles of …
The next portion of the URL identifies the website by its domain name. In this example, the
domain name is “example.com.” The “www.” part at the beginning is the particular hostname at
that domain. The hostname “www” has become a convention but is not a rule. In fact, sometimes
the hostname may be omitted. There can be more than one website at a domain (called
subdomains). For example, there might also be “develop- ment.example.com,”
“clients.example.com,” and so on.
Lesson 1 Lesson 2 Lesson 3 Lesson 4
/2018/samples/first.html
Lessons Quizzes Tasks Rules
Internet
World Wide Web
Principles of …
This is the absolute path through directories on the server to the requested HTML document,
first.html. The words separated by slashes are the directory names, starting with the root directory
of the host (as indicated by the initial /). Because the internet originally comprised computers
running the Unix operating system, our current way of doing things still follows Unix rules and
conventions, hence the / separating directory names.
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
A browser is a software program
that displays web pages.
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
WEB BROWSER SEARCH ENGINE
A search engine is a website that
finds web pages.
Google Chrome, Mozilla Firefox,
Safari, Microsoft Edge.
Google, Bing, DuckDuckGo
Lessons
Next
Quizzes Tasks Rules
What happens when
you type a URL and
hit enter?
Lessons
Next
Quizzes Tasks Rules
Let’s say Danica made this fantastic webpage that she
wants to share with the world.
Lessons
Next
Quizzes Tasks Rules
So you put the code for your web page on a computer that’s always
running. This computer can serve your page whenever a client
computer requests it.
client
server
Lessons
Next
Quizzes Tasks Rules
All computers have an address called an IP address.
Think of it as a mailing address for computers.
client
server
Address: 169.232.116.21
Address: 193.45.12.4
Lessons
Next
Quizzes Tasks Rules
Each domain name (ex: helloworld.com) corresponds to an IP
address to a server.
client
server
Address: 169.232.116.21
Address: 193.45.12.4 aka helloworld.com
Lessons
Next
Quizzes Tasks Rules
So when you type in a domain name from your computer, you are
making a request to a server with that corresponding address.
client
server
Address: 169.232.116.21
Address: 193.45.12.4 aka helloworld.com
Lessons
Next
Quizzes Tasks Rules
client
To: 193.45.12.4aka helloworld.com
From: 169.232.116.21
I’d like to request this webpage
please!
Lessons
Next
Quizzes Tasks Rules
To: 169.232.116.21
From: 193.45.12.4 aka helloworld.com
Ya sure no probs, here it is...
Lessons
Next
Quizzes Tasks Rules
After all of this, the client computer is then able
to view the web page!
Lessons
Next
Quizzes Tasks Rules
We can see this in action
using Google Chrome!
Lessons
Next
Quizzes Tasks Rules
What is Web
Development?
Lessons
Next
Quizzes Tasks Rules
Building sites and applications for the
World Wide Web
Lessons
Next
Quizzes Tasks Rules
Developers write code that describes...
Lessons
Next
Quizzes Tasks Rules
The foundations of front-end
development are...
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Principles of Good Website Design
An effective website design should fulfill its intended function by conveying its particular message
while simultaneously engaging the visitor. Several factors such as consistency, colors, typography,
imagery, simplicity, and functionality all contribute to good website design.
Your website needs to accommodate the needs of the user.
• Describing Expertise
• Building Your Reputation
• Generating Leads
• Sales and After Care
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
1. Website Purpose
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Simplicity is the best way to go when considering the user experience and the usability of your
website.
• Colour
• Type
• Imagery
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
2. Simplicity
Navigation is the wayfinding system used on websites where visitors interact and find what they
are looking for. Website navigation is key to retaining visitors. If the website’s navigation is
confusing visitors will give up and find what they need elsewhere. Keeping navigation simple,
intuitive and consistent on every page is key.
3. Navigation
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
The F- based pattern is the most common way visitors scan text on a website. Eye tracking
studies have found that most of what people see is in the top and left area of the screen. The F’
shaped layout mimics our natural pattern of reading in the West (left to right and top to
bottom). An effective designed website will work with a reader’s natural pattern of scanning the
page.
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
4. F-SHAPED PATTERN READING
Visual hierarchy is the arrangement of elements in order of importance. This is done either by
size, colour, imagery, contrast, typographically, whitespace, texture and style. One of the most
important functions of visual hierarchy is to establish a focal point; this shows visitors where the
most important information is.
5. VISUAL HIERARCHY
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
An effective web design has both great design and great content. Using compelling language
great content can attract and influence visitors by converting them into customers.
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
6. CONTENT
Grids help to structure your design and keep your content organized. The grid helps to align
elements on the page and keep it clean. The grid based layout arranges content into a clean rigid
grid structure with columns, sections that line up and feel balanced and impose order and
results in an aesthetically pleasing website.
7. GRID BASED LAYOUT
Lesson 1
Lessons
Lesson 2 Lesson 3 Lesson 4
Waiting for a website to load will lose of visitors. Nearly half of web visitors expect a site to load
in 2 seconds or less and they will potentially leave a site that isn’t loaded within 3 seconds.
Optimizing image sizes will help load your site faster.
Internet
World Wide Web
Principles of …
Quizzes Tasks Rules
8. LOAD TIME
More people are using their phones or other devices to browse the web. It is important to
consider building your website with a responsive layout where your website can adjust to
different screens.
9. MOBILE FRIENDLY
Lessons
TEXT EDITOR:
Next
Quizzes Tasks Rules
Applications you need:
Sublime Notepad++ Visual Studio Code Google Chrome
BROWSER:
Lessons
Next
Quizzes Tasks Rules
• New Folder
• Rename the folder (INMENZO, ROSE ANN M. (WEB I-D)
Students File
File Explorer

More Related Content

Similar to WST I (Lesson 1)-2.pdf

web technology and soical networking
web technology and soical networkingweb technology and soical networking
web technology and soical networkingVijay Bansal
 
Introduction about Internet
Introduction about InternetIntroduction about Internet
Introduction about InternetAadil Khan
 
The most efficient development tool is now available in Pakistan.pdf
The most efficient development tool is now available in Pakistan.pdfThe most efficient development tool is now available in Pakistan.pdf
The most efficient development tool is now available in Pakistan.pdfConnect Solutions
 
Computer communication and internet
Computer communication and internetComputer communication and internet
Computer communication and interneteVidhya
 
The most effective development service is available to Pakistan.ppt
The most effective development service is available to Pakistan.pptThe most effective development service is available to Pakistan.ppt
The most effective development service is available to Pakistan.pptConnect Solutions
 
Internet and computer are your future
Internet and computer are your futureInternet and computer are your future
Internet and computer are your futureTallat Satti
 
The most efficient development tool is now available in Pakistan.ppt
The most efficient development tool is now available in Pakistan.pptThe most efficient development tool is now available in Pakistan.ppt
The most efficient development tool is now available in Pakistan.pptConnect Solutions
 
The Guide to Website Development for Beginners.pdf
The Guide to Website Development for Beginners.pdfThe Guide to Website Development for Beginners.pdf
The Guide to Website Development for Beginners.pdfConnect Solutions
 
Introduction to the Internet
Introduction to the InternetIntroduction to the Internet
Introduction to the Internetcoastalgraphics
 
Network Basics & Internet
Network Basics & InternetNetwork Basics & Internet
Network Basics & InternetVNSGU
 
Internet website designing_company_in_delhi
Internet website designing_company_in_delhiInternet website designing_company_in_delhi
Internet website designing_company_in_delhiCss Founder
 
The Guide to Website Development for Beginners.pptx
The Guide to Website Development for Beginners.pptxThe Guide to Website Development for Beginners.pptx
The Guide to Website Development for Beginners.pptxConnect Solutions
 
Lecture 1- Introduction to Computers and the Internet.pptx
Lecture 1- Introduction to Computers and the Internet.pptxLecture 1- Introduction to Computers and the Internet.pptx
Lecture 1- Introduction to Computers and the Internet.pptxRemyaTom2
 
The best development services available for Pakistan.ppt
The best development services available for Pakistan.pptThe best development services available for Pakistan.ppt
The best development services available for Pakistan.pptConnect Solutions
 
Internet Training For Teachers
 Internet Training For Teachers Internet Training For Teachers
Internet Training For TeachersGNSHI
 

Similar to WST I (Lesson 1)-2.pdf (20)

web technology and soical networking
web technology and soical networkingweb technology and soical networking
web technology and soical networking
 
Introduction about Internet
Introduction about InternetIntroduction about Internet
Introduction about Internet
 
The most efficient development tool is now available in Pakistan.pdf
The most efficient development tool is now available in Pakistan.pdfThe most efficient development tool is now available in Pakistan.pdf
The most efficient development tool is now available in Pakistan.pdf
 
Computer communication and internet
Computer communication and internetComputer communication and internet
Computer communication and internet
 
The most effective development service is available to Pakistan.ppt
The most effective development service is available to Pakistan.pptThe most effective development service is available to Pakistan.ppt
The most effective development service is available to Pakistan.ppt
 
Internet and computer are your future
Internet and computer are your futureInternet and computer are your future
Internet and computer are your future
 
The most efficient development tool is now available in Pakistan.ppt
The most efficient development tool is now available in Pakistan.pptThe most efficient development tool is now available in Pakistan.ppt
The most efficient development tool is now available in Pakistan.ppt
 
The Guide to Website Development for Beginners.pdf
The Guide to Website Development for Beginners.pdfThe Guide to Website Development for Beginners.pdf
The Guide to Website Development for Beginners.pdf
 
Introduction to the Internet
Introduction to the InternetIntroduction to the Internet
Introduction to the Internet
 
Network Basics & Internet
Network Basics & InternetNetwork Basics & Internet
Network Basics & Internet
 
Ppt Lesson 02
Ppt Lesson 02Ppt Lesson 02
Ppt Lesson 02
 
PPT on MS-CIT Unit-2
PPT on MS-CIT Unit-2PPT on MS-CIT Unit-2
PPT on MS-CIT Unit-2
 
Internet website designing_company_in_delhi
Internet website designing_company_in_delhiInternet website designing_company_in_delhi
Internet website designing_company_in_delhi
 
The Guide to Website Development for Beginners.pptx
The Guide to Website Development for Beginners.pptxThe Guide to Website Development for Beginners.pptx
The Guide to Website Development for Beginners.pptx
 
Lecture 1- Introduction to Computers and the Internet.pptx
Lecture 1- Introduction to Computers and the Internet.pptxLecture 1- Introduction to Computers and the Internet.pptx
Lecture 1- Introduction to Computers and the Internet.pptx
 
WEB DESIGNING.pptx
WEB DESIGNING.pptxWEB DESIGNING.pptx
WEB DESIGNING.pptx
 
amaha internet course
amaha internet courseamaha internet course
amaha internet course
 
The best development services available for Pakistan.ppt
The best development services available for Pakistan.pptThe best development services available for Pakistan.ppt
The best development services available for Pakistan.ppt
 
unit 1(chapter1).pdf
unit 1(chapter1).pdfunit 1(chapter1).pdf
unit 1(chapter1).pdf
 
Internet Training For Teachers
 Internet Training For Teachers Internet Training For Teachers
Internet Training For Teachers
 

Recently uploaded

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...Call Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 

WST I (Lesson 1)-2.pdf

  • 1. Learn Now Web System and Technology I by Rose Ann M. Inmenzo Lessons Quizzes Tasks Assignments Rules
  • 2. Web System and Technology I This course deals with the design and development of Web pages and Websites. Emphasis is on user-interface design, and scripts using various open-source Web technologies. Topics include World Wide Web, Hypertext Markup Language (HTML), Cascading Style Sheets (CSS), and JavaScript. Lessons Quizzes Tasks Rules
  • 3. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Internet World Wide Web Principles of … Quizzes Tasks Rules What is the Internet? The Internet was derived from the word Interconnected NETwork. It is a globally connected system that uses TCP/IP in transmitting data via various types of media. The network consists of millions of private, public, academic, business, and government networks that are linked by a broad array of electronic, wireless, and optical networking technologies. How to access the Internet? ISP (Internet Service Provider), is a commercial organization that provides data connection to the subscribers allowing them to access the Internet through physical transport infrastructure. They charge users whether households, businesses, and governments a monthly fee on a contractual basis.
  • 4. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Next Uses of the Internet? Quizzes Tasks Rules Listed below are some common uses of the internet: • Email and Personal Communication • Research • News • Shopping • Entertainment • Banking • Job Hunting The Internet can be accessed anywhere by means of numerous ways, our mobile phones, data card, handheld game consoles, and cellular routers can be connected to the internet wirelessly. Different services of the internet may be available and can be done effectively including electronic mail. Internet World Wide Web Principles of …
  • 5. As mentioned earlier, IP is the key factor in the definition of the Internet. This HTTP is the key component in the definition of the World Wide Web. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Basic Internet Protocol Quizzes Tasks Rules A computer communication protocol refers to the ways in which devices can identify and communicate with each other in order to serve some purposes. • Internet Protocol (IP) • Transmission Control Protocol (TCP) • User Datagram Protocol (USD) • Domain Name Service (DNS) • Host name • Higher-level Protocols Next Internet World Wide Web Principles of …
  • 6. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 The World Wide Web World Wide Web refers to the collection of information that is accessed via the internet, which we usually tap into the browser. This used Hypertext Transfer Protocol (HTTP) which this HTTP is a language used to transmit data to access information that lives on different networks. It's a single HTML document that can contain text, images, videos, links, and other elements that can be displayed in a web browser. Quizzes Tasks Rules WEBPAGE WEBSITE A collection of interconnected webpages that are related to each other and are typically organized under a common domain name. Internet World Wide Web Principles of …
  • 7. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Browser Rendering Engines Quizzes Tasks Rules Internet World Wide Web Principles of … The program that is responsible for converting HTML and CSS into what you see rendered on the screen is called a rendering engine (also browser engine or layout engine). Browsers that you use on desktop computers and mobile devices are made up of rendering engines as well as other code used for their own user interfaces and functionality.
  • 8. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 The Web Page Addresses Quizzes Tasks Rules Internet World Wide Web Principles of … Every page and resource on the web has its own special address called a URL, which stands for Uniform Resource Locator. Parts of URL A complete URL is generally made up of three components: the protocol, the site name, and the absolute path to the document or resource, as shown below.
  • 9. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 http:// Quizzes Tasks Rules Internet World Wide Web Principles of … The first thing the URL does is define the protocol that will be used for that particular transaction. The letters “HTTP” let the server know to use Hypertext Transfer Protocol, or get into “web mode.” You may also see a URL beginning with https://, which I explain in the “HTTPS, The Secure Web Protocol” sidebar.
  • 10. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 www.example.com Quizzes Tasks Rules Internet World Wide Web Principles of … The next portion of the URL identifies the website by its domain name. In this example, the domain name is “example.com.” The “www.” part at the beginning is the particular hostname at that domain. The hostname “www” has become a convention but is not a rule. In fact, sometimes the hostname may be omitted. There can be more than one website at a domain (called subdomains). For example, there might also be “develop- ment.example.com,” “clients.example.com,” and so on.
  • 11. Lesson 1 Lesson 2 Lesson 3 Lesson 4 /2018/samples/first.html Lessons Quizzes Tasks Rules Internet World Wide Web Principles of … This is the absolute path through directories on the server to the requested HTML document, first.html. The words separated by slashes are the directory names, starting with the root directory of the host (as indicated by the initial /). Because the internet originally comprised computers running the Unix operating system, our current way of doing things still follows Unix rules and conventions, hence the / separating directory names.
  • 12. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 A browser is a software program that displays web pages. Internet World Wide Web Principles of … Quizzes Tasks Rules WEB BROWSER SEARCH ENGINE A search engine is a website that finds web pages. Google Chrome, Mozilla Firefox, Safari, Microsoft Edge. Google, Bing, DuckDuckGo
  • 13. Lessons Next Quizzes Tasks Rules What happens when you type a URL and hit enter?
  • 14. Lessons Next Quizzes Tasks Rules Let’s say Danica made this fantastic webpage that she wants to share with the world.
  • 15. Lessons Next Quizzes Tasks Rules So you put the code for your web page on a computer that’s always running. This computer can serve your page whenever a client computer requests it. client server
  • 16. Lessons Next Quizzes Tasks Rules All computers have an address called an IP address. Think of it as a mailing address for computers. client server Address: 169.232.116.21 Address: 193.45.12.4
  • 17. Lessons Next Quizzes Tasks Rules Each domain name (ex: helloworld.com) corresponds to an IP address to a server. client server Address: 169.232.116.21 Address: 193.45.12.4 aka helloworld.com
  • 18. Lessons Next Quizzes Tasks Rules So when you type in a domain name from your computer, you are making a request to a server with that corresponding address. client server Address: 169.232.116.21 Address: 193.45.12.4 aka helloworld.com
  • 19. Lessons Next Quizzes Tasks Rules client To: 193.45.12.4aka helloworld.com From: 169.232.116.21 I’d like to request this webpage please!
  • 20. Lessons Next Quizzes Tasks Rules To: 169.232.116.21 From: 193.45.12.4 aka helloworld.com Ya sure no probs, here it is...
  • 21. Lessons Next Quizzes Tasks Rules After all of this, the client computer is then able to view the web page!
  • 22. Lessons Next Quizzes Tasks Rules We can see this in action using Google Chrome!
  • 24. Lessons Next Quizzes Tasks Rules Building sites and applications for the World Wide Web
  • 25. Lessons Next Quizzes Tasks Rules Developers write code that describes...
  • 26. Lessons Next Quizzes Tasks Rules The foundations of front-end development are...
  • 27. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Principles of Good Website Design An effective website design should fulfill its intended function by conveying its particular message while simultaneously engaging the visitor. Several factors such as consistency, colors, typography, imagery, simplicity, and functionality all contribute to good website design. Your website needs to accommodate the needs of the user. • Describing Expertise • Building Your Reputation • Generating Leads • Sales and After Care Internet World Wide Web Principles of … Quizzes Tasks Rules 1. Website Purpose
  • 28. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Simplicity is the best way to go when considering the user experience and the usability of your website. • Colour • Type • Imagery Internet World Wide Web Principles of … Quizzes Tasks Rules 2. Simplicity Navigation is the wayfinding system used on websites where visitors interact and find what they are looking for. Website navigation is key to retaining visitors. If the website’s navigation is confusing visitors will give up and find what they need elsewhere. Keeping navigation simple, intuitive and consistent on every page is key. 3. Navigation
  • 29. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 The F- based pattern is the most common way visitors scan text on a website. Eye tracking studies have found that most of what people see is in the top and left area of the screen. The F’ shaped layout mimics our natural pattern of reading in the West (left to right and top to bottom). An effective designed website will work with a reader’s natural pattern of scanning the page. Internet World Wide Web Principles of … Quizzes Tasks Rules 4. F-SHAPED PATTERN READING Visual hierarchy is the arrangement of elements in order of importance. This is done either by size, colour, imagery, contrast, typographically, whitespace, texture and style. One of the most important functions of visual hierarchy is to establish a focal point; this shows visitors where the most important information is. 5. VISUAL HIERARCHY
  • 30. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 An effective web design has both great design and great content. Using compelling language great content can attract and influence visitors by converting them into customers. Internet World Wide Web Principles of … Quizzes Tasks Rules 6. CONTENT Grids help to structure your design and keep your content organized. The grid helps to align elements on the page and keep it clean. The grid based layout arranges content into a clean rigid grid structure with columns, sections that line up and feel balanced and impose order and results in an aesthetically pleasing website. 7. GRID BASED LAYOUT
  • 31. Lesson 1 Lessons Lesson 2 Lesson 3 Lesson 4 Waiting for a website to load will lose of visitors. Nearly half of web visitors expect a site to load in 2 seconds or less and they will potentially leave a site that isn’t loaded within 3 seconds. Optimizing image sizes will help load your site faster. Internet World Wide Web Principles of … Quizzes Tasks Rules 8. LOAD TIME More people are using their phones or other devices to browse the web. It is important to consider building your website with a responsive layout where your website can adjust to different screens. 9. MOBILE FRIENDLY
  • 32. Lessons TEXT EDITOR: Next Quizzes Tasks Rules Applications you need: Sublime Notepad++ Visual Studio Code Google Chrome BROWSER:
  • 33. Lessons Next Quizzes Tasks Rules • New Folder • Rename the folder (INMENZO, ROSE ANN M. (WEB I-D) Students File File Explorer