Let's start building your first web page together!
HTML stands for HyperText Markup Language. It is used to structure the content on the web.
HTML provides the skeleton of the page.
<!DOCTYPE html>, <html>, <head>, <body><h1> to <h6><p><a href="#"><img src=" "><ul> (unordered), <ol> (ordered), <li> (list item)<table>, <tr> (row), <td> (data), <th> (header)<form>, <input>, <textarea>, <button>, <label><header>, <footer>, <nav>, <section>, <article>Hereβs what a basic HTML page looks like:
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Click the button below to open the code playground and experiment with this HTML code!
Try in Playground