Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR ANGULARJS GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SWIFT SASS VUE GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING BASH RUST

Web Development Project: Simple HTML Page


Create a Simple HTML Page

You have now learned some of the building blocks of HTML:

  • Headings
  • Paragraphs
  • Formatting elements like <b> and <i>
  • Horizontal lines (<hr>)

Now it's time to use these elements to a simple project - a small profile page that introduces yourself. It uses only the HTML concepts you have learned so far:

Example

A simple profile page:

<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>

<h1>Welcome to My Page</h1>

<p>Hello! My name is <b>Liam</b>. This is my very first web page.</p>

<h2>About Me</h2>
<p>I love <b>coding</b>, <i>music</i>, and learning new things.</p>
<p>This is my simple HTML practice project.</p>

<hr>

<p>Thanks for visiting!</p>

</body>
</html>
Try it Yourself »

You can customize this page by changing your name, adding more text, or experimenting with different elements.

Later in this tutorial, you will learn how to style this page, which will make it look much better.

Next, you'll learn how to use HTML Attributes to add extra information and control how elements behave.


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookies and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.