Django Tutorial
What is Django
HTML stands for HyperText Markup Language.
It is used for creating and designing web pages.
Start to create your first website with HTML
Simple website with html
Example
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph Hussein.</p>
</body>
</html>
Try it Yourself »