HTML 101
HTML 101
Introduction to Web
Development
By: Mohammed Adeeb Ahmed
Definition of HTML
Elements
Tags
Attributes
Nesting
Document structure
Semantics
Example:
<!DOCTYPE html>
<html>
<head>
<title>This is a title</title>
</head>
<body>
<div>
<p>Hello world!</p>
</div>
</body>
</html>
Registration form
Registration form
HTML: A Part of Frontend