Web Development Lesson 1
Web Development Lesson 1
LESSON ONE
• Introduction to web
development
o What is a Website
o What is Website Development
o Benefits of being a web developer
o Website Editors
o Major Components of a website
o Creating a Website Project
• Introduction to HTML
o What is HTML
o Basic HTML Element/Tag
o Programming a Basic HTML Homepage
What is a Website
A website is a collection of
publicly accessible,
interlinked Web pages that
share a single domain name.
Together, all publicly
accessible websites
constitute the World Wide
Web. Notable examples are
wikipedia.org, google.com,
and amazon.com.
What is Web Development
Web development refers to building, creating, and an
maintaining websites. It includes aspects such as web design,
web publishing, web programming, and database
management. Web development can range from developing
a simple single static page of plain text to complex
web-based internet applications (web apps), electronic
businesses, and social network services. A website developer
designs and creates websites.
Why Learn How to Design Website
Website Editors are Software used to create and Edit Web pages.
Examples of Web Editors include;
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>