Articles → HTML 5 → Create Your First HTML5 Program
Create Your First HTML5 Program
Software Requirement
- Any text editor like notepad for writing code
- Any browser that supports HTML 5
Technical Knowledge
Introduction To HTML5
- Provides cross-browser compatibility
- Provides audio and video support without installing any plug-in
- Provides rich UI
- Supports mobile devices
How To Check If Your Browser Supports HTML?
Doctype In HTML5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Creating Your First HTML 5 Program
<!DOCTYPE html>
<html>
<head>
<title> Sample Title </title>
</head>
<body> This is test page </body>
</html>
Try It
Browser Support
Internet Explorer | Firefox | Chrome | Safari | Opera | Edge |
---|
Yes | Yes | Yes | Yes | Yes | Yes |
Video