Why HTML is very important for programming study?
- Create good website.
- Become a professional website developer.
- Undrestand other website functions.
- HTML is basic for undertand other programming languages.
Now we are checking Hello World program using HTML.
<html>
<head>
<title>Coding Request</title>
</head>
<body>
<h1>HTML Coding</h1>
<p>Hello World!</p>
</body>
</html>
Coding view in Notepad++
Noteped++ Download link here https://notepad-plus-plus.org/downloads/
Some coding meaning here
- <title>..............</title> - Your title place
- <h1>................</h1> - Heading place
- <p>..................</p> - Paragraph place
Result view in browser
Image 2
C:/Users/MUNZIR/Document/new.html this is our programme file path. You need more information check the practical video.
Practical video
Video 1