Web Dev Week 1
Web Dev Week 1
Web Dev Week 1
LANGUAGE
CHAPTER 1:
Hypertext Mark Up Language
INTRODUCTION:
a bulleted list? Is it part of a table?), structure a document into logical sections (Does
content such as images and videos into a page. This module will introduce the first
two of these and introduce fundamental concepts and syntax you need to know to
understand HTML.
Before starting this module, you don't need any previous HTML knowledge,
but you should have at least basic familiarity with using computers and using the web
work environment set up (as detailed in Installing basic software), and understand
how to create and manage files (as detailed in Dealing with files). Both are parts of
1|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
LESSON 1
INTRODUCTION TO HTML
OBJECTIVES
Define HTML
PRE-ASSESSMENT
A. Multiple Choice:
2|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
a. Bill Gates
b. Berners-Lee
d. Charles Babbage
3. HTML is being widely used to format web pages with the help of different _______
available in HTML language.
a. Tags
b. Version
c. Code
d. Syntax
4. What was the first standard HTML specification which was published in 1995?
a. HTML 1.0
b. HTML 2.0
c. HTML 3.0
d. HTML 4.0
a. HTML 4
b. HTML 4.1
c. HTML 5.1
d. HTML 5
B. ENUMERATION:
1. _______________
3|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
2. _______________
3. _______________
4. _______________
5. _______________
STUDY
HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to
develop web pages. HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first
standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML
and it was published in late 1999. Though HTML 4.01 version is widely used but currently we are
having HTML-5 version which is an extension to HTML 4.01, and this version was published in 2012.
documents like headings, paragraphs, lists, and so forth to facilitate the sharing of
format web pages with the help of different tags available in HTML language.
Software Engineer specially when they are working in Web Development Domain. I
Create Web site - You can create a website or customize an existing web
4|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
Understand web - If you want to optimize your website, to boost its speed
Learn other languages - Once you understand the basic of HTML then other
understand.
Just to give you a little excitement about HTML, I'm going to give you a small
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>This is a heading</h1>
<p>Hello World!</p>
</body>
</html>
5|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
Applications of HTML
As mentioned before, HTML is one of the most widely used language over the web.
rendered over the web. Almost every page of web is having html tags in it to
Internet Navigation - HTML provides tags which are used to navigate from
Responsive UI - HTML pages now-a-days works well on all platform, mobile,
Game development- HTML5 has native support for rich experience and is
Audience
This HTML tutorial is designed for the aspiring Web Designers and Developers
with a need to understand the HTML in enough detail along with its simple
overview, and practical examples. This tutorial will give you enough ingredients to
start with HTML from where you can take yourself at higher level of expertise.
Prerequisites
6|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
with Windows or Linux operating system, additionally you must be familiar with −
Experience with any text editor like notepad, notepad++, or Edit plus etc.
C. Multiple Choice:
a. Bill Gates
b. Berners-Lee
d. Charles Babbage
7|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
3. HTML is being widely used to format web pages with the help of different _______
available in HTML language.
a. Tags
b. Version
c. Code
d. Syntax
4. What was the first standard HTML specification which was published in 1995?
e. HTML 1.0
f. HTML 2.0
g. HTML 3.0
h. HTML 4.0
a. HTML 4
b. HTML 4.1
c. HTML 5.1
d. HTML 5
II. ENUMERATION:
6. _______________
7. _______________
8. _______________
9. _______________
10. _______________
8|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
LESSON 2
HTML TEXT EDITORS
OBJECTIVES
PRE-ASSESSMENT
A. Enumeration:z`
a.
b.
c.
d.
a.
9|P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
b.
c.
d.
STUDY
o An HTML file is a text file, so to create an HTML file we can use any text
editors.
o Text editors are the programs which allow editing in a written text, hence to
create a web page we need to write our code in some text editor.
o There are various types of text editors available which you can directly
download, but for a beginner, the best text editor is Notepad (Windows) or
TextEdit (Mac).
o After learning the basics, you can easily use other professional text editors
o In our lesson, we will use Notepad and sublime text editor. Following are
some easy ways to create your first web page with Notepad, and sublime text
Notepad is a simple text editor and suitable for beginners to learn HTML. It is
available in all versions of Windows, from where you easily access it.
10 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
11 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
To run the HTML page, you need to open the file location, where you have saved the
file and then either double-click on file or click on open with option
12 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
HTML)
When you will learn the basics of HTML, then you can use some professional text
editors, which will help you to write an efficient and fast code. So to use Sublime
Text editors, first it needs to download and install from internet. You can easily
your PC. When installation of Sublime text editor done then you can follow the
13 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
To open Sublime Text editor, go to Start screen ⤏ type Sublime Text⤏ Open it.
To save your page in Sublime Text press Ctrl+S or go to File option ⤏ save, to save
a file use extension .htm or .html. We recommend to save the file first then write the
14 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
code because after saving the page sublime text editor will give you suggestions to
write code.
To execute or open this page in Web browser just right click by mouse on sublime
15 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
Note: You can execute HTML file in any browser, but there are some tags
16 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
B. Enumeration:
a.
b.
c.
d.
a.
b.
c.
d.
17 | P a g e
WEB DEVELOPMENT CHAPTER 1: HYPERTEXT MARK UP
LANGUAGE
18 | P a g e