You are on page 1of 3

HTML Certification Training

Module 1: Introduction to HTML and HTML Tags

Demo Document 1

© Brain4ce Education Solutions Pvt. Ltd.


Module 1: Introduction to HTML and HTML Tags

Downloading Code Editor Notepad++ and Writing a Sample HTML Code

Link for download: https://notepad-plus-plus.org/downloads/

Step 1: Download and install Notepad plus plus from the above link.

Step 2: Let us write a sample HTML code.

<!DOCTYPE html>
<html>
<head>
<title>Edureka</title>
</head>
<body>
<h1>Edureka HTML Training</h1>
<p>My first HTML Page.</p>
</body>
</html>

©Brain4ce Education Solutions Pvt. Ltd Page 1


Module 1: Introduction to HTML and HTML Tags

Step 3: Save the file in the .html format and run the code. Below is the output for the above code.

©Brain4ce Education Solutions Pvt. Ltd Page 2

You might also like