Robert Johns | 22 Apr, 2024
Fact checked by Jim Markus

10 Best HTML Projects Beginner to Pro in 2024 [With Code]

If I wanted to help my younger self learn HTML, I'd say build as many HTML projects as possible!

That's exactly why I wrote this article: to share 10 HTML projects to help beginners like you.

Whether you’re looking to start a career in web development or enhance your portfolio, these HTML projects are perfect for leveling up your skills, and you can do it all by following along in our online HTML compiler.

Plus, to help you build your skills, I’ve designed these HTML projects to be more challenging as you make your way through the list. This is great for leveling up and building your portfolio.

These HTML projects also include complementary skills for modern web development, like CSS frameworks, JavaScript, and external APIs from Google Maps and more. 

I'm also regularly adding new HTML projects, so make sure you bookmark this page and check back for the latest HTML projects to grow your skills.

So, if you’re ready, let’s dive in and start building with HTML!

HTML Projects for Beginners

If you’re really new to the topic of HTML and web development, this is the best place to start!

We’ll be building three HTML projects for beginners, with each being designed to get slightly more challenging as you work through the list.

The idea here is to help you stretch yourself by layering your new HTML skills with each successive project.

We’ll start off with various elements that are easy for HTML beginners to understand, and then we’ll add more as we make our way through the list.

We’ll also be using lots of CSS in these beginner projects to boost your web design skills.

If you don’t already know, it’s almost unheard of in 2024 to see an HTML page without some form of CSS styling.

Check out any good web development course to see just what I mean!

For these HTML projects, rather than using inline styles, we’ll be getting you familiar with external CSS stylesheets, as this is a far cleaner and more professional approach.

If you get stuck at any point while building these HTML projects, consider checking out an HTML cheat sheet for some quick help.

Sounds good? Great! Let’s dive into these beginner projects!

 

1. Personal Bio Page

The first HTML project on our list is a simple Bio Page to list your personal information.

This is great for beginners because it introduces you to the fundamental concepts of HTML and CSS, including:

  • Basic HTML structure: You’ll create the skeleton of an HTML document via doctype, html, head, and body tags. We’ll even use HTML5 sections.
  • HTML tags: You’ll use headers, paragraphs, images, and anchor tags to display content.
  • CSS styling: You’ll apply styles to HTML elements, like changing fonts, colors, and adding spacing.

If you’re super new to web development in general, this is the perfect introduction to get you started.

I’d also encourage building this project while taking a HTML course if you are totally new to the language, as it’s a great way to apply your newly learned skills.

Take a look at the source code we’ve included below for both the HTML document and the external CSS stylesheet.

And please feel free to make as many changes as you like. In fact, I’d strongly encourage you to make changes to see how they affect the output in your browser.

In my opinion, this is one of the best ways to cement these new skills, as there’s no substitute for making changes and seeing what they do!

And, of course, change the name, email, social media links, and image source to your own!

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Your Name's Bio</title>
  <link rel="stylesheet" href="styles_1.css">
</head>
<body>
  <header>
      <img src="profile-picture.png" alt="Your Name" class="profile-img">
      <h1>Your Name</h1>
      <p>Web Developer, Programmer, and Tech Student</p>
      <p>Follow me on social media:</p>
      <p>
          <a href="https://twitter.com/yourusername"
          target="_blank">Twitter</a> |
          <a href="https://linkedin.com/in/yourusername"
          target="_blank">LinkedIn</a>
      </p>
  </header>
  <main>
      <section class="bio">
          <h2>About Me</h2>
          <p>Hello! I'm Your Name, a web developer with a passion
              for front-end design and user experience.
              I've been building websites for over 5 years
                and love what I do.</p>
          <!-- Add more paragraphs as needed -->
      </section>
      <section class="projects">
          <h2>Projects</h2>
          <ul>
              <li><a href="#">Project One</a></li>
              <li><a href="#">Project Two</a></li>
              <li><a href="#">Project Three</a></li>
              <!-- Add more list items as needed -->
          </ul>
      </section>
  </main>
  <footer>
      <p>Contact me at <a href="mailto:your.name@example.com">your.name@example.com</a></p>
  </footer>
</body>
</html>

Try It Yourself »

CSS Source Code:

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding: 20px;
  background-color: #f4f4f4;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.profile-img {
  width: 150px;
  height: auto;
  border-radius: 50%;
}

h1 {
  margin-top: 10px;
}

.bio, .projects {
  margin-bottom: 20px;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 20px;
}

Try It Yourself »

By tackling this HTML project, you’ll be getting some great practice with:

  1. Creating the basic structure of an HTML page.
  2. Inserting text and images into the webpage with <p> and <img> tags.
  3. Using <h1> and <h2> tags for headings.
  4. Linking to external websites with <a> tags.
  5. Styling the webpage with an external CSS file that adjusts the layout, color, font, and other properties of HTML elements.
  6. Implementing class selectors to style specific elements.
  7. Use the :hover pseudo-class to create interactive elements that respond to user actions.

While this might seem like a really simple HTML project for beginners, its strength lies in the fact that it lays the groundwork for more complex projects.

Also, pay attention to the file name and path you use for the external CSS stylesheet. This is an easy mistake for beginners.

Overall, by tackling this project, you’ll be able to solidify your fundamental skills before making your way down to the more advanced projects we’ve included.

Before we move on to the next project, if any of the terminology or techniques we’ve covered seem too difficult, consider reading a great HTML book to reinforce your understanding.

Have fun!

2. Recipe Page

Moving on to the second HTML project for beginners in our list, let’s build a recipe page. 

I really like this because it’s a solid introduction to new concepts for beginners, including some more HTML5 semantic tags. 

By building this HTML project, you can expect to improve your skills in the following areas:

  • Working with lists: Creating ordered (numbered) and unordered (bulleted) lists to display ingredients and steps.
  • Styling lists: Changing list styles and using images as list items.
  • Embedding images: Using images to make content more visually appealing.
  • The CSS Box Model: Manipulating padding, borders, and margins to adjust layout.

If you’re still new to web development, this is a great way to level up your foundational skills. It’s also a great idea to tackle this after project #1, as it’s a nice follow-on from the skills you need for the personal bio page. 

By tackling this project, you will get some hands-on experience with:

  1. Using <header> and <footer> tags for a semantic HTML5 structure.
  2. Utilizing <section> elements to semantically group content.
  3. Create a list of ingredients with an unordered list and the <ul> tag.
  4. Outline the recipe steps with an ordered list and the <ol> tag.
  5. Embed an image to showcase the final product.
  6. Apply various CSS styles to adjust the layout with padding and margins, and improve typography by changing the font family and colors. 

I really like this HTML project, as it’s a fun and engaging way to reinforce the skills you picked up in the first project while adding more elements and styles to your growing toolkit. 

It’s also a really practical exercise because displaying lists and images in a user-friendly format is a common task in web development.

Build This HTML Project Here

3. Animated Business Card

The third project on our list is an excellent way to boost your HTML and CSS skills by developing a solid understanding of CSS positioning with a one-page website.

That’s because you’ll be using more sophisticated design and layout techniques, including CSS3 features that are widely used in modern web design.

But what are we doing?

Well, in this HTML project, you'll create a digital business card. 

While this might seem simple, it’s actually a solid step up in complexity.

This is because you’ll be using more advanced CSS to style and position elements by getting to grips with the Flexbox layout model.

This is ideal if you want to enhance your design skills with advanced styling techniques.

Here’s what you can expect to learn from this project:

  • Flexbox: Learn how to use Flexbox for creating flexible and responsive layouts that work on different screen sizes
  • CSS Transitions and Transforms: Add visual interest with hover effects that transform elements, such as changing their scale or rotating them.
  • CSS Positioning: Use advanced positioning techniques to layer elements.
  • Box Model Manipulation: Apply margins, paddings, and borders.
  • Styling and Theming: Develop a visual theme using colors, fonts, and spacing.
  • Interactivity: Enhance the UX with pseudo-classes to make your card interactive when users hover over elements.

As I said, this is a definite step up in difficulty, but the end result is well worth it! But don’t worry; if you get lost or stuck at any point, check out our CSS cheat sheet for some extra help.

Take a look at the source code below, noting how the CSS stylesheet is much longer than we used with the first two beginner HTML projects.

As always, make sure you replace the placeholder image paths with your own image files. 

And please experiment with tags and styling to see how things change or even break.

I know that I’ve learned a lot from accidentally breaking things I didn’t mean to!

Another aspect you can consider to take your code to the next level is to consider accessibility by adding alt text for images and ensuring color contrast is sufficient for readability.

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Business Card</title>
  <link rel="stylesheet" href="business-card-styles.css">
</head>
<body>
  <div class="card-container">
      <div class="card">
          <img src="avatar.png" alt="Your Name" class="avatar">
          <div class="info">
              <h1>Your Name</h1>
              <p>Web Developer</p>
              <p>your.name@example.com</p>
              <p>(123) 456-7890</p>
              <div class="social-icons">
                  <a href="https://twitter.com/yourname">
                      <img src="twitter-icon.png" alt="Twitter"></a>
                  <a href="https://linkedin.com/in/yourname">
                      <img src="linkedin-icon.png" alt="LinkedIn"></a>
                  <a href="https://github.com/yourname">
                      <img src="github-icon.png" alt="GitHub"></a>
              </div>
          </div>
      </div>
  </div>
</body>
</html>

Try It Yourself »

CSS Source Code:

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card-container {
  perspective: 1000px; /* For a subtle 3D effect on hover */
}

.card {
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: rotateY(10deg);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -50px; /* Half outside the card */
  border: 5px solid white; /* Creates a nice border effect */
}

.info {
  text-align: center;
  padding: 20px;
}

h1 {
  margin: 10px 0;
}

p {
  color: #666;
  font-size: 0.9em;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.social-icons img {
  width: 24px;
  height: 24px;
  margin: 0 10px;
}

.social-icons a {
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

Try It Yourself »

By the end of this HTML project, you will have hands-on experience with:

  1. Using <div> elements to create the structure of the card.
  2. Applying Flexbox to center content and layout elements within the card.
  3. Embedding images and learning how to create an overlapping effect with negative margins.
  4. Styling text and divs to look more visually appealing.
  5. Adding interactivity with :hover effects.
  6. Utilizing shadows with box-shadow to add depth to the card.
  7. Using CSS transitions for smooth visual effects.
  8. Creating a pseudo-3D effect to engage users with perspective.

Intermediate HTML Projects for Improvers

If you already have some experience with HTML and web development, you might want to dive into these intermediate HTML projects for improvers.

If you’re not sure whether you’re at that stage, rewind a few steps and check out our beginner projects as they build the skills you need to tackle these harder challenges.

The idea of this article is to make each project slightly more challenging as you work through the list in sequence.

As we move on to these more challenging projects, we’ll be using HTML and CSS alongside CSS frameworks and JavaScript to add interactivity to our pages.

Cool, let’s dive in!

4. Product Landing Page

This is the first intermediate HTML project on our list, and it’s now time to push your boundaries!

But enough of the suspense, what are we building?

For this HTML project, we’re going to build a product landing page. 

You’ll also be using the popular CSS framework Bootstrap. 

Note that I’ve chosen to use the Bootstrap framework because it’s a widely used tool in web development. We’ll also be using the CDN version rather than installing it locally.

After all, why not build your marketable skills while also extending your knowledge? 

This project also builds on each of the previous projects in this article by incorporating a variety of HTML elements and layouts that you’ll commonly find on commercial websites.

In our case, this will be a single, comprehensive page that showcases a product, service, or application. 

To build this project, you can expect to grips with the following HTML skills:

  • Navigation bar: Create a sticky menu that stays at the top when scrolling.
  • Call-to-action (CTA): Design buttons to grab attention and encourage clicks.
  • Forms: Add a form for users to sign up or contact you for more information.
  • Bootstrap Framework: Utilize Bootstrap classes to layout content and achieve a responsive design.
  • Media Queries: Write custom media queries to make sure the page looks good on all devices.

Just like before, this HTML project is a definite step up in complexity, but trust me, the end result is worth the effort.

We’re also adding responsive design with this project, which is an essential skill for any aspiring web developer.

When you’re ready, dive into the HTML and CSS source code to get started. 

Note also that the CSS stylesheet is very short for this project because we’re using Bootstrap.

I’d recommend getting familiar with the official Bootstrap docs to learn how to experiment with its various offerings.

There are a lot, so don’t feel overwhelmed! But this is a great idea to help you get experimental with the project.

Like I keep saying, you really learn a lot by tinkering with things and making changes, so don’t let this project be any different!

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Awesome Product</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
  <link rel="stylesheet" href="product-landing-styles.css">
</head>
<body>

  <nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
      <div class="container">
          <a class="navbar-brand" href="#">Awesome Product</a>
          <button class="navbar-toggler" type="button"
          data-toggle="collapse" data-target="#navbarNav"
          aria-controls="navbarNav" aria-expanded="false"
          aria-label="Toggle navigation">
              <span class="navbar-toggler-icon"></span>
          </button>
          <div class="collapse navbar-collapse" id="navbarNav">
              <ul class="navbar-nav ml-auto">
                  <li class="nav-item">
                      <a class="nav-link" href="#features">Features</a>
                  </li>
                  <li class="nav-item">
                      <a class="nav-link" href="#pricing">Pricing</a>
                  </li>
                  <li class="nav-item">
                      <a class="nav-link" href="#contact">Contact</a>
                  </li>
              </ul>
          </div>
      </div>
  </nav>

  <header class="header-section">
      <div class="container text-center">
          <h1>Welcome to Awesome Product</h1>
          <p>Discover the world's best product here.</p>
          <a href="#pricing" class="btn btn-primary mt-3">Get Started</a>
      </div>
  </header>

  <!-- Features Section -->
  <section id="features" class="py-5">
      <div class="container">
          <div class="row">
              <!-- Feature 1 -->
              <div class="col-md-4">
                  <h3>Feature One</h3>
                  <p>Description of feature one.</p>
              </div>
              <!-- Feature 2 -->
              <div class="col-md-4">
                  <h3>Feature Two</h3>
                  <p>Description of feature two.</p>
              </div>
              <!-- Feature 3 -->
              <div class="col-md-4">
                  <h3>Feature Three</h3>
                  <p>Description of feature three.</p>
              </div>
          </div>
      </div>
  </section>

  <!-- Pricing Section -->
  <section id="pricing" class="py-5 bg-light">
      <div class="container">
          <div class="row">
              <!-- Pricing Plan 1 -->
              <div class="col-md-4">
                  <div class="card mb-4">
                      <div class="card-header">
                          <h3 class="my-0 font-weight-normal">Free</h3>
                      </div>
                      <div class="card-body">
                          <h4 class="card-title pricing-card-title">$0
                              <small class="text-muted">/ mo</small></h4>
                          <ul class="list-unstyled mt-3 mb-4">
                              <li>10 users included</li>
                              <li>2 GB of storage</li>
                              <!-- More features -->
                          </ul>
                          <button type="button"
                          class="btn btn-lg btn-block
                          btn-outline-primary">
                          Sign up for free</button>
                      </div>
                  </div>
              </div>
              <!-- More pricing plans -->
          </div>
      </div>
  </section>

  <!-- Contact Section -->
  <section id="contact" class="py-5">
      <div class="container">
          <h2>Contact Us</h2>
          <form>
              <div class="form-group">
                  <label for="nameInput">Name</label>
                  <input type="text" class="form-control"
                  id="nameInput" placeholder="Enter name">
              </div>
              <div class="form-group">
                  <label for="emailInput">Email address</label>
                  <input type="email" class="form-control"
                  id="emailInput" placeholder="Enter email">
              </div>
              <div class="form-group">
                  <label for="messageTextarea">Message</label>
                  <textarea class="form-control"
                  id="messageTextarea" rows="3"></textarea>
              </div>
              <button type="submit"
              class="btn btn-primary">Submit</button>
          </form>
      </div>
  </section>

  <!-- Footer -->
  <footer class="text-muted py-5">
      <div class="container">
          <p class="float-right">
              <a href="#">Back to top</a>
          </p>
          <p>Awesome Product &copy; 2024</p>
      </div>
  </footer>
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

Try It Yourself »

CSS Source Code:

/* Custom styles on top of Bootstrap */

.header-section {
  padding: 100px 0;
  background: url('header-background.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}

.navbar {
  background-color: rgba(255,255,255,0.8);
}

/* Ensures that the navbar text is not transparent */
.navbar-light .navbar-nav .nav-link {
  color: rgba(0,0,0,0.7);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0,0,0,0.9);
}

Try It Yourself »

After building this intermediate project, you will have had some real-world experience with the following web development skills:

  1. Using Bootstrap to create a responsive navigation bar and layout.
  2. Creating a header section to introduce a product with a headline and CTA.
  3. Designing a features section using Bootstrap's grid system.
  4. Developing a pricing table.
  5. Implementing a contact form to collect leads or provide customer service.
  6. Understanding how to override Bootstrap's styles with custom CSS.
  7. Ensuring the content is accessible and navigable with an HTML5 layout.

For this HTML project, we’re going to mix in a little bit of JavaScript to create an interactive photo gallery that’s ideal for a photography website.

Yep, your website will allow users to click on thumbnails in an album to view a larger version of an image.

While I know this article is about HTML, as you become more experienced and skilled, you need to know how to integrate JavaScript with HTML.

I don’t make the rules; this is just how things are with modern web development!

But don’t worry, this is only going to be a light sprinkling of JS. If you want to level up your skills in that area, I’d definitely consider a JavaScript course.

That said, let’s take a look at the skills you’ll be using to build this HTML project: 

  • HTML5: Use HTML5 semantic tags to structure your photo gallery.
  • CSS3: Use CSS3 for styling and creating grid layouts.
  • JavaScript: Use basic JavaScript to handle click events and manipulate the DOM.
  • Lightbox Feature: Create a lightbox effect to view pictures. This involves dimming the rest of the webpage and displaying a selected image in a larger size.
  • Responsive Design: Create a responsive gallery that looks good on all screen sizes.

Like we’ve done so far in this article, this project has been designed to be a natural step up from those before it.

If you’re not sure whether you’re ready, consider checking out the earlier options in the list to refresh your HTML skills.

Otherwise, dive into the HTML and CSS source code below. 

Notice how we’ve implemented a longer CSS stylesheet here, as we’re not depending on a CSS framework for this project.

We’ve also included a JavaScript file that will house all of the JavaScript functions that our project needs to activate the interactive lightbox features.

This allows us to show a contrasting backdrop and an enlarged image. 

You should also be able to notice the use of event handlers for onClick, which is where we’re calling our JavaScript functions.

This is fairly standard but may be new to you if you’ve not used JS before.

As always, feel free to get creative and experimental with this project to see how it all works. 

And why not try to break stuff and see if you can fix it? I’ve found that can be an excellent way to test my own understanding of what’s going on.

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Interactive Photo Gallery</title>
  <link rel="stylesheet" href="gallery-styles.css">
</head>
<body>

<div class="gallery-container">
  <div class="gallery-grid">
      <!-- Thumbnails -->
      <img src="path-to-thumbnail-1.jpg"
      alt="Description 1" class="gallery-img"
      onclick="openLightbox(); setCurrentImage(1)">
      <img src="path-to-thumbnail-2.jpg"
      alt="Description 2" class="gallery-img"
      onclick="openLightbox(); setCurrentImage(2)">
      <!-- Add more thumbnails here -->
  </div>
</div>

<!-- The Modal/Lightbox -->
<div id="lightbox" class="lightbox">
  <span class="close" onclick="closeLightbox()">&times;</span>
  <img class="lightbox-content" id="lightbox-img">
  <div id="caption"></div>
</div>

<script src="gallery-scripts.js"></script>
</body>
</html>

Try It Yourself »

CSS Source Code:

/* Styles for the photo gallery */

.gallery-container {
  padding: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 4px;
}

.gallery-img {
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-img:hover {
  opacity: 0.7;
}

/* Styles for the lightbox */

.lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

Try It Yourself »

JavaScript Source Code:

// Open the Modal
function openLightbox() {
  document.getElementById('lightbox').style.display = "block";
}
  // Close the Modal
function closeLightbox() {
  document.getElementById('lightbox').style.display = "none";
}
  // Declare a variable for the index of the current image
let currentIndex = 1;
  // Change the image in the lightbox to the one that is clicked on
function setCurrentImage(index) {
  currentIndex = index;
  const imageSrc = document.getElementsByClassName(
      'gallery-img')[currentIndex - 1].src;
  document.getElementById('lightbox-img').src = imageSrc;
  const imageAlt = document.getElementsByClassName(
      'gallery-img')[currentIndex - 1].alt;
  document.getElementById('caption').innerHTML = imageAlt;
}

Try It Yourself »

By the end of this project, you’ll be well on your way to becoming a proficient HTML developer with hands-on experience in the following:

  1. Using HTML5 to structure an image gallery.
  2. Applying CSS Grid to create a responsive, well-organized layout for thumbnails.
  3. Writing JavaScript functions to open and close a lightbox display.
  4. Using JavaScript to dynamically change the content of the lightbox based on user interaction.
  5. Incorporating CSS transitions for smoother visual effects

6. Professional Portfolio Page

Do you want to become a web developer? 

Well, you need a portfolio! 

It’s fairly common to use your GitHub account as a CV of your work, but why don’t we build our own page for it?

That’s what this project is all about, and we’ll be using HTML and CSS to create a personal portfolio page to highlight your various projects and skills. 

What’s really cool about this HTML project is that we'll be using HTML5’s multimedia elements along with advanced CSS techniques to create a clean design that really stands out.

That said, let’s cover the skills you’ll be using:

  • HTML5: Create a structured and semantic HTML document.
  • Responsive Design: Making sure the portfolio displays nicely on different screen sizes, using media queries to adapt the layout to various devices.
  • Multimedia Embeddings: Embed video and audio elements to demonstrate your multimedia capabilities and previous projects.
  • CSS Custom Properties: Use CSS variables for consistent styling.
  • Form Handling: Using text fields to create a contact form for prospective clients.

The stand-out feature of this project has to be the multimedia elements. This is one of the coolest features of HTML5, and there’s no better time than now to learn how to use them.

We’ve also made sure that these look great on all screen sizes by focusing on a responsive design.

Note that we’ve chosen not to use Bootstrap or other CSS frameworks in this HTML project as it’s a great way to keep the codebase light while also working on your CSS skills.

The goal here is to create a minimalistic portfolio design with a focus on the content rather than heavy graphical elements. 

But like I keep saying, please feel free to change this! Get creative, make changes, make some more, and learn while you’re doing it.

After all, this is supposed to be your portfolio, so make it your own!

You’ll also notice I’ve included an optional CSS styling option for a background image for the header. Try this out, and remember to change the image path to your own.

You could also consider altering the footer section styling. Try it all, and see what you like!

Overall, the HTML and CSS code I’ve included below is a great starting point, but I’d love to see how you take this and run with it.

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My Portfolio</title>
  <link href="styles.css" rel="stylesheet">
</head>
<body>
<header>
  <h1>My Portfolio</h1>
</header>

<section id="projects">
  <h2>Projects</h2>
  <!-- Project entries -->
  <article class="project-entry">
      <h3>Project Title</h3>
      <p>Project Description</p>
      <!-- Embed Video -->
      <video controls>
          <source src="path-to-your-video.mp4" type="video/mp4">
          Your browser does not support the video tag.
      </video>
      <!-- Embed Audio -->
      <audio controls>
          <source src="path-to-your-audio.mp3" type="audio/mpeg">
          Your browser does not support the audio element.
      </audio>
  </article>
  <!-- More project entries -->
</section>

<section id="contact">
  <h2>Contact Me</h2>
  <form id="contact-form">
      <!-- Input fields for the contact form -->
      <input type="text" id="name" name="name"
      placeholder="Your Name" required>
      <input type="email" id="email" name="email"
      placeholder="Your Email" required>
      <textarea id="message" name="message"
      placeholder="Your Message" required></textarea>
      <button type="submit">Send Message</button>
  </form>
</section>

<footer>
  <p>&copy; 2024 My Portfolio</p>
</footer>

</body>
</html>

Try It Yourself »

CSS Source Code:

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  padding: 20px;
}

header, footer {
  background-color: transparent;
  color: #fff;
  text-align: center;
  padding: 20px 0;
 
}

/* Optional: Add a background image to the header */
/* Uncomment the below lines and replace 'path-to-your-image.jpg' with your image path */
/*
header {
  background-image: url('path-to-your-image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
*/

h1, h2 {
  color: #333;
}

#projects {
  margin: 20px 0;
}

.project-entry {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 5px solid #333;
}

/* Multimedia styles */
video, audio {
  width: 100%;
  margin-top: 15px;
}

#contact form {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
}

button {
  display: inline-block;
  border: none;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  /* Responsive styles */
}

Try It Yourself »

By the end of this HTML project, you’ll have even more hands-on experience with building HTML websites, and you’ll also have a shiny new portfolio page to share!

That said, let’s recap the skills you’ve used in this project:

  1. Using the latest HTML5 standards to create a well-structured and accessible document.
  2. Implementing complex CSS selectors, pseudo-elements, and pseudo-classes.
  3. Using media queries to make the portfolio look great on any device.
  4. Embedding videos, images, and audio clips to showcase your projects dynamically.
  5. Building a contact form with HTML and CSS for potential clients to reach out to you.

7. Interactive Quiz App

This is the last of our intermediate HTML projects, and it’s a great chance to extend yourself before tackling the more advanced projects we’ve provided.

The main goal here is to create a dynamic and interactive quiz. 

We’ll be presenting the user with a series of questions, and we’ll be providing immediate feedback on their answers. To do this, we’ll be using some JavaScript.

We’ll also be using Bootstrap in this project. The further you go in web development, the more you’ll see CSS frameworks being used, so it doesn’t hurt to get even more practice. 

Without a doubt, this HTML project is another step up in complexity, so let’s look at the different skills you’ll be using to tackle it:

  • HTML5: Structuring the quiz page content with semantic HTML5.
  • JavaScript: Using JS to manage the quiz logic, event handling, and DOM manipulation.
  • Bootstrap: Using Bootstrap components for a polished UI with modals and buttons.
  • CSS: Styling the quiz interface and layout while including a responsive design.

So, while it may seem quite simple, this project is a great chance to test out the skills you’ve honed in the previous projects in a new way.

If I had to pick one stand-out feature of this project, it’s probably the greater use of JavaScript to provide immediate user feedback.

We’ll also be using JS to handle user input, validate answers, and keep their score.

As we move on to the more advanced HTML projects, you’ll see that we have no choice but to make greater use of JavaScript.

The TL-DR is that when you reach a certain level, the natural extension is to include interactivity. And right now, JavaScript is the best and most popular way to do this.

Let’s take a look at the HTML, CSS, and JavaScript source code for our quiz app.

You’ll notice that the HTML code itself is not very long! That’s because we’re using JavaScript to dynamically output questions one by one.

This is quite similar to the Single Page Application (SPA) approach that you tend to see when building with React. Just check out any React course to see what I mean.

Overall, if you have your heart set on becoming a pro web developer, this is good to know! 

You’ll also see that our CSS file is relatively short, as we’re relying a lot on Bootstrap for its default styling. This is not uncommon when building with a CSS framework.

Finally, the JS source code is definitely the longest we’ve included so far!

Don’t be daunted by this, as it’s not super technical or complicated. Overall, we have some event listeners, a function to serve up questions, and a function to process a user's answer.

Note also that right now, I’ve only added one question. You might want to add to this!

Similarly, as I’ve said throughout, now’s also the time to experiment with this code and to test yourself.

Try something different with Bootstrap, see if you can improve the JS code, and make some changes to the HTML. Whatever you do, just have fun with it!

These projects are designed to help you learn new skills and showcase them, but they’re also designed to let you try new things and express yourself as a web developer.

So have fun, and get creative!

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Interactive Quiz</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
  <link rel="stylesheet" href="quiz-styles.css">
</head>
<body>

<div class="container mt-5">
  <div id="quiz-container" class="text-center">
      <h1 id="question">Question Text</h1>
      <div id="options" class="my-4">
          <!-- Options will be populated here by JavaScript -->
      </div>
      <button id="next-button" class="btn btn-primary">Next Question</button>
  </div>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="quiz-scripts.js"></script>
</body>
</html>

Try It Yourself »

CSS Source Code:

body {
  background-color: #f8f9fa;
}

#quiz-container {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#question {
  font-size: 24px;
}

#options .btn-option {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

#next-button {
  margin-top: 20px;
}

Try It Yourself »

JavaScript Source Code:

document.addEventListener('DOMContentLoaded', (event) => {
  const questionElement = document.getElementById('question');
  const optionsElement = document.getElementById('options');
  const nextButton = document.getElementById('next-button');
  let currentQuestionIndex = 0;

  const questions = [
      {
          question: "What is the capital of France?",
          options: ["New York", "London", "Paris", "Dubai"],
          answer: "Paris"
      },
      // More questions...
  ];

  function loadQuestion(questionIndex) {
      const question = questions[questionIndex];
      questionElement.textContent = question.question;
      optionsElement.innerHTML = '';
      question.options.forEach(option => {
          const button = document.createElement('button');
          button.textContent = option;
          button.classList.add('btn', 'btn-option');
          button.onclick = () => selectOption(option);
          optionsElement.appendChild(button);
      });
  }

  function selectOption(selected) {
      const question = questions[currentQuestionIndex];
      if (selected === question.answer) {
          alert('Correct!');
      } else {
          alert('Wrong!');
      }
  }

  nextButton.addEventListener('click', () => {
      currentQuestionIndex++;
      if (currentQuestionIndex < questions.length) {
          loadQuestion(currentQuestionIndex);
      } else {
          alert('Quiz completed!');
          currentQuestionIndex = 0;
      }
      loadQuestion(currentQuestionIndex);
  });

  // Load the first question
  loadQuestion(currentQuestionIndex);
});

Try It Yourself »

How did you find that? 

By the end of this HTML project, you should be feeling ready to make the leap to our advanced HTML projects, as you’ll have even more hands-on experience!

Let’s now recap the skills you had to use in this project:

  1. Using HTML5 to create a semantic structure.
  2. Using Bootstrap to quickly develop a responsive interface while adding buttons and modals.
  3. Writing more challenging JavaScript for quiz logic, navigation, and answer validation.
  4. Using JavaScript to interact with DOM-based user events and to update the UI in real time.

You’re now ready to dive into our final three advanced HTML projects, where we take all of the skills you’ve learned so far to the next level! Let’s go!

Advanced HTML Projects

In this section, I’ve put together three advanced HTML projects designed to test and stretch you, regardless of your skill level and experience.

That said, these are best suited to those who have already tackled the intermediate projects on our list or are more experienced web development professionals.

As I mentioned earlier, each project in this article has been designed to be more challenging than the last.

So, if at any point you feel like you’re stuck or out of your depth, rewind a few steps and try an earlier project to build your skills. You can then return to these advanced HTML projects.

Given that these have been designed to be the most difficult HTML projects, we’ll be using HTML, CSS, CSS frameworks, JavaScript, and external API calls.

If you’re ready, let’s get started!

8. Interactive Event Page

In this advanced HTML project, we’re going to test ourselves by mixing HTML, CSS, JavaScript, and an external API to create an event page for a tech conference.

Yep, we’re going to be using the Google Maps API to create an interactive map for users to see where our conference is located. Pretty cool, I know!

So, while you might have thought, huh, this is a basic task, an event or conference page is actually a really engaging HTML project as it combines various real-world web dev skills.

In particular, integrating with an external API like Google Maps is great practice for real-world projects, as this is the type of thing you’d need to do all the time.

And yes, I know we’re using JavaScript again in this project, but trust me, you need to learn JavaScript to be a pro web developer with HTML.

We’ll also be using Bootstrap again here to create a responsive design, as this is often essential for event attendees who want to access information on different device types.

So, get ready to use the following skills in this HTML project:

    • HTML5: Use semantic elements to structure the webpage.
    • CSS3 & Bootstrap: Use Bootstrap's grid system and components to create a pro layout.
    • Google Maps API: Integrate Google Maps to display the event location.
    • JavaScript: Create an interactive Google Map in an external JS file.
    • Form Handling: Create a registration form to allow users to sign up for the event.

Just like before, we’ll only be using a very small amount of simple JavaScript in this project.

Also, super important but remember to replace the API Key placeholder text with your own Google Maps API key in the script tag for the Google Maps API call.

If you’re new to this, you need to do the following:

  • Setup a Google Cloud Platform (GCP) Account
  • Create a new project
  • Enable Billing on your project
  • Enable the Google Maps Platform APIs
  • Create an API Key

It’s all fairly standard stuff for working with GCP, but if you are still learning web development or you haven’t worked in the cloud before, it could be new to you.

Then again, I’m hoping that you’ll be excited to take on new challenges like this, as it’s a great way to add real-world, marketable web development skills to your portfolio! 

Let’s now take a look at the HTML, CSS, and JavaScript source code for this cool project.

You’ll notice that our CSS file is not as short as the last time we used BootStrap, but that’s just because we wanted to override some of the default styles.

As always, please experiment with this code! There’s so much you can do here, whether that’s altering the navbar, altering the section layout, or playing with the CSS styling.

Also, have a play with the GPS coordinates in the JS file to see how the map changes.

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Event Conference Page</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
  <link rel="stylesheet" href="event-styles.css">
</head>
<body>

<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
  <a class="navbar-brand" href="#">TechConf 2024</a>
  <button class="navbar-toggler" type="button" data-toggle="collapse"
  data-target="#navbarNav" aria-controls="navbarNav"
  aria-expanded="false" aria-label="Toggle navigation">
      <span class="navbar-toggler-icon"></span>
  </button>
  <div class="collapse navbar-collapse" id="navbarNav">
      <ul class="navbar-nav ml-auto">
          <li class="nav-item active">
              <a class="nav-link" href="#details">Details</a>
          </li>
          <li class="nav-item">
              <a class="nav-link" href="#schedule">Schedule</a>
          </li>
          <li class="nav-item">
              <a class="nav-link" href="#speakers">Speakers</a>
          </li>
          <li class="nav-item">
              <a class="nav-link" href="#register">Register</a>
          </li>
      </ul>
  </div>
</nav>

<main>
  <section id="details" class="py-5">
      <div class="container">
          <h2 class="text-center mb-3">Event Details</h2>
          <!-- Event details go here -->
      </div>
  </section>

  <section id="schedule" class="py-5 bg-light">
      <div class="container">
          <h2 class="text-center mb-3">Event Schedule</h2>
          <!-- Schedule details go here -->
      </div>
  </section>

  <section id="speakers" class="py-5">
      <div class="container">
          <h2 class="text-center mb-3">Speakers</h2>
          <!-- Speaker details go here -->
      </div>
  </section>

  <section id="register" class="py-5 bg-light">
      <div class="container">
          <h2 class="text-center mb-3">Registration</h2>
          <form id="registration-form">
              <div class="form-group">
                  <label for="fullName">Full Name</label>
                  <input type="text" class="form-control" id="fullName"
                  name="fullName" placeholder="Enter full name" required>
              </div>
              <div class="form-group">
                  <label for="emailAddress">Email address</label>
                  <input type="email" class="form-control" id="emailAddress"
                  name="emailAddress" placeholder="Enter email" required>
              </div>
              <div class="form-group">
                  <label for="ticketType">Ticket Type</label>
                  <select class="form-control" id="ticketType" name="ticketType" required>
                      <option value="">Select ticket type</option>
                      <option value="general">General Admission</option>
                      <option value="vip">VIP</option>
                      <option value="student">Student</option>
                  </select>
              </div>
              <button type="submit" class="btn btn-primary">Submit Registration</button>
          </form>
      </div>
  </section>

  <section id="location" class="py-5">
      <div class="container">
          <h2 class="text-center mb-3">Location</h2>
          <div id="map"></div>
      </div>
  </section>
</main>

<footer class="bg-dark text-white text-center py-3">
  <p>(c) 2024 TechConf. All Rights Reserved.</p>
</footer>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="event-scripts.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script>
</body>
</html>

Try It Yourself »

CSS Source Code:

/* Basic reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Navigation styles */
.navbar {
  margin-bottom: 30px;
}

/* Section Styles */
section {
  padding: 60px 0;
}

/* Event details styles */
#details .container {
  text-align: center;
}

/* Schedule styles */
#schedule .container {
  text-align: center;
}

/* Speakers styles */
#speakers .container {
  text-align: center;
}

/* Registration Form Styles */
#register .container {
  text-align: center;
  max-width: 600px; /* Makes the form not too wide on larger screens */
  margin: auto;
}

#registration-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

#registration-form .form-group {
  margin-bottom: 1rem;
}

#registration-form label {
  text-align: left;
  display: block;
  margin-bottom: .5rem;
}

#registration-form .form-control {
  height: 40px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#registration-form .btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

#registration-form .btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

/* Location Map Styles */
#map {
  height: 400px;
  width: 100%;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

Try It Yourself »

JavaScript Source Code:

// Google Maps API initialization
function initMap() {
  // The location of the event
  var eventLocation = {lat: 37.4429964, lng: -122.1545229};
  // The map, centered at the event location
  var map = new google.maps.Map(
      document.getElementById('map'),
      {zoom: 15, center: eventLocation});
  // The marker, positioned at the event location
  var marker = new google.maps.Marker(
      {position: eventLocation, map: map});
}

Try It Yourself »

By the end of this project, you should be feeling like a real web developer!

That said, if you’re starting to feel more confident in your skills, maybe consider including some more JavaScript to add interactivity to the schedule and speakers' sections.

Equally, check out some more Bootstrap components, like modals for the speaker bios or session details.

The possibilities for tinkering are endless, and they’re a great way to make a project your own and showcase your skills in your HTML portfolio.

Let’s now recap the skills you’ll have used by building this HTML project:

  1. Using Bootstrap to create a responsive and accessible layout for an event page.
  2. Implementing the grid with Bootstrap.
  3. Integrating with the Google Maps API to provide location details.
  4. Collect user data with a registration form.

9. Music Player App

This is a really fun project if you like music! That’s right, we’re going to build our own HTML music player.

Sure, we’re not going to be competing with Spotify, but this advanced HTML project is an excellent way to level up your existing skills when dealing with multimedia.

The goal here is to create a functional and stylish interface for our music player. We’ll also include a playlist to list songs and controls for play, pause, next, and previous.

Let’s take a look at the skills we’ll need to use to build our music player:

  • HTML5 Audio: Control audio playback with JavaScript and the<audio> element.
  • Custom Audio Controls: Create and style audio controls rather than relying on default browser controls.
  • CSS3 Animations and Transitions: Use CSS to animate the play/pause button and the progress bar.
  • JavaScript Event Handling: Use JavaScript to handle play, pause, and track change events and update the UI.
  • Responsive Design: Ensure the music player is usable across different screen sizes.

You’ve probably noticed that we’re using JavaScript again here. This is going to be a recurring theme from this point onward.

Trust me; you just have to get comfortable with JS if you want to be a pro HTML developer. Like peanut butter and jelly, they are very often found together!

And seeing as we’re working on advanced projects, the JS code in this project is the longest we’ve used so far.

But don’t let this put you off, as it’s fairly straightforward when you get to grips with basic JavaScript.

Let’s now take a look at the source code for this project.

Remember to change the paths to your MP3 files in both the HTML and JS code, and as always, have fun playing around with this code.

In particular, see what happens when you make changes to the JS functionality. You might also want to try out a different color scheme or overall user interface to match your personality.

I’ve said it many times in this article, but the best way to learn how these projects work is to get stuck in, make changes, break things, and then fix them. 

It really is amazing how much you can learn by trying to deconstruct a project.

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Music Player Interface</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<div id="music-player" class="player">
  <audio id="audio-element">
      <source src="path-to-your-first-song.mp3" type="audio/mpeg">
      Your browser does not support the audio element.
  </audio>
  <div class="controls">
      <button id="play-pause" onclick="togglePlayPause()">Play</button>
      <button id="prev" onclick="playPreviousTrack()">Prev</button>
      <button id="next" onclick="playNextTrack()">Next</button>
  </div>
  <div class="progress-bar">
      <div id="progress" class="progress"></div>
  </div>
  <div class="playlist">
      <ul id="playlist">
          <li onclick="changeTrack('path-to-your-first-song.mp3', this)">First Song Title</li>
          <li onclick="changeTrack('path-to-your-second-song.mp3', this)">Second Song Title</li>
          <li onclick="changeTrack('path-to-your-third-song.mp3', this)">Third Song Title</li>
          <!-- More songs can be added here -->
      </ul>
  </div>
</div>

<script src="script.js"></script>
</body>
</html>

Try It Yourself »

CSS Source Code:

/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Music Player Styles */
.player {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px auto;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Control Button Styles */
.controls button {
  background: #ff9800;
  border: none;
  padding: 10px 20px;
  margin-right: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.controls button:hover {
  background: #e68900;
}

/* Progress Bar Styles */
.progress-bar {
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 10px;
  margin-top: 20px;
}

.progress {
  background: #ff9800;
  height: 10px;
  width: 0%;
}

/* Playlist Styles */
.playlist {
  margin-top: 20px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 10px;
}

#playlist li {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

#playlist li:last-child {
  border-bottom: none;
}

#playlist li:hover, #playlist li.playing {
  background: #ff9800;
  color: #fff;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 600px) {
  .player {
      width: auto;
      padding: 10px;
  }

  .controls button {
      padding: 5px 10px;
      font-size: 14px;
  }
}

Try It Yourself »

JavaScript Source Code:

// JavaScript for Custom Music Player Controls
var audio = document.getElementById('audio-element');
var playlistItems = document.querySelectorAll('#playlist li');
var tracks = [
  'path-to-your-first-song.mp3',
  'path-to-your-second-song.mp3',
  'path-to-your-third-song.mp3',
  // ...add more tracks here
];

function togglePlayPause() {
  if (audio.paused) {
      audio.play();
      updatePlayPauseButton(true);
  } else {
      audio.pause();
      updatePlayPauseButton(false);
  }
}

function updatePlayPauseButton(isPlaying) {
  var playPauseButton = document.getElementById('play-pause');
  playPauseButton.innerText = isPlaying ? 'Pause' : 'Play';
}

function playNextTrack() {
  currentTrackIndex = (currentTrackIndex + 1) % tracks.length;
  changeTrack(tracks[currentTrackIndex], playlistItems[currentTrackIndex]);
}

function playPreviousTrack() {
  currentTrackIndex = (currentTrackIndex - 1 + tracks.length) % tracks.length;
  changeTrack(tracks[currentTrackIndex], playlistItems[currentTrackIndex]);
}

function changeTrack(source, element) {
  audio.src = source;
  audio.play();
  updatePlayPauseButton(true);
  updatePlaylistHighlight(element);
}

function updatePlaylistHighlight(element) {
  if (element) {
      playlistItems.forEach(li => li.classList.remove('playing'));
      element.classList.add('playing');
  }
}

audio.addEventListener('ended', playNextTrack);

audio.addEventListener('timeupdate', function() {
  var progressBar = document.getElementById('progress');
  var percentage = Math.floor((100 / audio.duration) * audio.currentTime);
  progressBar.style.width = percentage + '%';
});

// Adding click event listeners to playlist items
playlistItems.forEach((item, index) => {
  item.addEventListener('click', function() {
      currentTrackIndex = index;
      changeTrack(tracks[currentTrackIndex], this);
  });
});

Try It Yourself »

By the end of this advanced HTML project, you’ll have built a truly portfolio-worthy piece that showcases your ability to work with multimedia on the web.

Let’s recap the skills you will have used to make this all happen:

  1. Using the HTML5 <audio> element and controlling it with JavaScript
  2. Developing a set of custom control elements for the audio player with a unique UI.
  3. Applying CSS animations to enhance the player interface.
  4. Managed user interactions such as play, pause, and track selection with JavaScript.
  5. Designed a music player that is fully functional and attractive on mobile and desktop.

10. Weather Forecast App

We’ve now made it to the final HTML project on our list, which just so happens to be the most challenging project we’ve included so far!

But what are we building, I hear you ask? We’re going to create a weather forecast app! 

This will allow a user to enter a city, which we’ll then use to fetch and display a weather forecast for them.

The final product may look simple, but this is a deceptively challenging project, as we’ll be interacting with an external weather API to fetch and parse the weather data.

As you’ve probably already guessed, this project is going to blend HTML with CSS, JavaScript, and the CSS framework Bootstrap.

I really wanted to tie in everything we’ve done so far for the grand finale, including a brand-new external API provider!

Let’s take a look at the skills we’ll be using to create our HTML weather app: 

  • Fetching API Data: Making HTTPS requests to external APIs to fetch weather data.
  • Asynchronous JavaScript: Using async and await to handle asynchronous API requests.
  • DOM Manipulation: Updating HTML dynamically weather data using JavaScript.
  • Bootstrap Grid System: Use Bootstrap's responsive grid system to present forecast data.
  • Event Handling: Capture user input and manage click events to trigger data fetching and UI updates.
  • Error Handling: Implement error handling for API requests and manage network issues or user errors.

The first thing you should notice is that we’re including error handling to ensure our project is professional. 

This is ideal if you want to add this project to your portfolio, as it shows you know how to think and code like a professional web developer.

When it comes to the standout feature of this project, it has to be the external API integration to fetch weather data. This is super fun and really rewarding. 

Of course, you’ll need to sign up with OpenWeatherMap to get your own API key, but this is really straightforward.

Simply sign up for the free account, verify your email, and you’ll receive your API key to use within a couple of hours. 

Then remember to add this to the JS code instead of the placeholder, and you will be all set.

Let’s now dive into the HTML, CSS, and JavaScript source code for our final HTML project.

You’ll notice that it uses a lot of JavaScript. 

As I mentioned earlier, we cannot avoid it at this point, especially if we want to include dynamic and interactive content.

This is particularly important for the weather data fetching, which is all handled within the JS code.

We simply collect the city and country of interest and send this data in our API request to fetch weather forecast data.

This is a simple RESTful API request to OpenWeatherMap to collect the forecast data.

Depending on how confident you feel, this might all sound very complicated.

But once you’ve looked at the code, you’ll see it’s nothing more than an HTTP request and some string manipulation.

Of course, we also have some asynchronous code processing and error handling, but again, these are fairly standard once you get to grips with JavaScript, so don't be afraid of them!

The final step involves using Bootstrap to neatly package the weather data into a card component, which is dynamically rendered within the HTML.

You’ll see that we’ve barely used any CSS in this example as we’ve chosen to depend on Bootstrap.

That said, I highly recommend and encourage you to make changes to the styling and to experiment with all of the code.

This is especially important if you feel like you’re out of your comfort zone, as it will help you to truly understand what is happening under the hood!

Maybe add some elements we haven’t used yet, like radio buttons or checkboxes? Perhaps you can add a survey form to get user feedback?

HTML Source Code:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Dashboard</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container mt-5">
  <h1 class="text-center">Weather Forecast</h1>
  <div class="row justify-content-center my-4">
      <div class="col-md-6">
          <!-- Input group for city and country -->
          <div class="input-group mb-3">
              <input type="text" id="city-input" class="form-control"
              placeholder="City" aria-label="City">
              <input type="text" id="country-input" class="form-control"
              placeholder="Country Code (e.g., UK)" aria-label="Country Code">
              <div class="input-group-append">
                  <button class="btn btn-outline-secondary" type="button"
                  id="search-btn">Get Forecast</button>
              </div>
          </div>
          <!-- Weather display area -->
          <div id="weather-result" class="text-center">
              <!-- Weather information will be displayed here -->
          </div>
      </div>
  </div>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="weather.js"></script>
</body>
</html>

Try It Yourself »

CSS Source Code:

.weather-day {
  margin-bottom: 10px;
}

Try It Yourself »

JavaScript Source Code:

const apiKey = 'YOUR_API_KEY'; // Replace with your API key
const weatherApiUrl = 'https://api.openweathermap.org/data/2.5/weather';

async function fetchWeather(city, country) {
  const queryParams = new URLSearchParams({
      q: `${city},${country}`,
      appid: apiKey,
      units: 'metric' // Or 'imperial' for Fahrenheit
  });

  try {
      const response = await fetch(`${weatherApiUrl}?${queryParams}`);
      if (!response.ok) throw new Error(`Weather data fetch failed: ${response.statusText}`);
      const weatherData = await response.json();
      updateWeatherUI(weatherData);
  } catch (error) {
      console.error(error);
      alert(error.message);
  }
}

function updateWeatherUI(weatherData) {
  const weatherResultDiv = document.getElementById('weather-result');
  // Clear previous results
  weatherResultDiv.innerHTML = '';
  // Bootstrap card for weather data
  const weatherCard = `
      <div class="card">
          <div class="card-body">
              <h5 class="card-title">${weatherData.name}</h5>
              <h6 class="card-subtitle mb-2 text-muted">${weatherData.weather[0].main}</h6>
              <p class="card-text">Temperature: ${weatherData.main.temp}°C</p>
              <p class="card-text">Feels like: ${weatherData.main.feels_like}°C</p>
              <p class="card-text">Wind Speed: ${weatherData.wind.speed} m/s</p>
              <p class="card-text">Humidity: ${weatherData.main.humidity}%</p>
          </div>
      </div>
  `;
  weatherResultDiv.innerHTML = weatherCard;
}

document.getElementById('search-btn').addEventListener('click', () => {
  const cityInput = document.getElementById('city-input').value.trim();
  const countryInput = document.getElementById('country-input').value.trim().toLowerCase();
  if (cityInput && countryInput) {
      fetchWeather(cityInput, countryInput);
  } else {
      alert('Please enter both city and country code.');
  }
});

Try It Yourself »

Huge congrats on making it this far and completing this advanced HTML project. Your portfolio will most definitely thank you!

You should now have a solid understanding of how to create interactive web applications that can respond to user input and display real-time data from external sources. 

This skill set is a cornerstone of modern web development, which is ideal if you have aspirations to become a professional web developer.

Let’s now recap the skills and hands-on experience you’ve gained in this project:

  1. Integrating with third-party APIs to fetch real-time data.
  2. Managing asynchronous operations and network requests in JavaScript.
  3. Dynamically updating the DOM based on user input and fetched data.
  4. Creating responsive layouts with Bootstrap that adapt to different screen sizes.
  5. Developing a user-friendly interface that provides interactive feedback for user actions.

What Is HTML?

Created in 1993 by Tim Berners-Lee, HTML (HyperText Markup Language) is the standard markup language for creating web pages and web applications. But what is a markup language? Well, this just means that HTML uses tags to mark up content and provide structure for web pages.

Despite being around for three decades, HTML is always evolving, and the most current version is HTML5, which was released in 2014. This was a big step forward for HTML, as it introduced new features like semantic tags and audio and video support.

In 2024, HTML is one of the key components of the modern Internet, and it tends to be used alongside web dev technologies like CSS and JavaScript. With this combination, web developers can create rich and interactive web pages, web applications, and other web development projects

The exponential rise in mobile devices and increasing importance for accessibility has also helped HTML to remain relevant, as proper use of HTML tags and attributes can make websites accessible to all users while also making them easy to view on all types of devices.

 

Key Features of HTML

Let’s take a quick look at some of the key features of HTML.

  • HTML documents are saved with .html or .htm file extensions.
  • HTML is closely related to other web technologies like CSS and JavaScript, with CSS styling and formatting HTML content and JavaScript adding interactivity and dynamic behavior.
  • HTML tags are defined by angled brackets (< >) to define the structure and content of web pages. They can also contain attributes or additional information about the tag.
  • HTML elements are the building blocks of a web page. These are defined by a start tag, content, and end tag, with common examples being paragraph <p> tags and more complex elements like images and videos via <img> and <video> tags.
  • HTML attributes are extra bits of information that you can add to HTML elements to modify behavior or provide additional information.
  • HTML is platform-independent, meaning you can use it on any device or operating system, and popular web browsers like Chrome, Firefox, Safari, and Edge can render content.
  • HTML nesting allows one HTML element to be placed inside another, creating a hierarchical element structure ideal for grouping related content and providing additional structure. 
  • HTML has built-in accessibility features to ensure web content is accessible to all users, including support for screen readers, magnifiers, and text descriptions for images and media.
  • HTML uses semantic markup elements to add meaning and structure to web content, with common examples of semantic tags being <header> and <footer>. This can also be useful for SEO, allowing search engines to understand web page structure better.

HTML Elements

 

Why Learn HTML In 2024?

HTML is perhaps the original gateway language for newcomers to web development and programming in general.

Let’s take a look at some of the most compelling reasons to learn HTML in 2024.

  • The foundation of web development: HTML provides structure and content for web pages, making it essential for creating any type of website or web app.
  • Easy to learn: HTML has a simple syntax and structure, meaning that basic HTML knowledge allows you to quickly build your own web pages.
  • Web accessibility: Learning to create accessible HTML code will help make the web a more inclusive place.
  • Stepping stone to other web technologies: A solid foundation in HTML is ideal for learning other web dev skills and programming languages like CSS and JavaScript.
  • Career opportunities: Whether for web development, marketing, content creation, and more, HTML skills are in demand in various industries and sectors. You can even earn HTML certifications to enhance your resume when applying for new career opportunities.

Wrapping Up

And there we have it! If you've taken the time to build these 10 HTML projects, you should be feeling much more competent and confident with HTML.

You'll also have a burgeoning HTML portfolio that's packed full of interesting and practical HTML projects, each demonstrating your dedication and abilities.

Did you notice that by tackling each of the HTML projects I’ve created in sequence, you were challenging yourself more and more as you made your way through the list?

Which one was your favorite? I'll confess that I really enjoyed making all of them, especially the weather app!

My motivation with these HTML projects was to guide you through the nuances of HTML development while giving you hands-on experience that you'd usually only get when taking an HTML course.

Here at hackr.io, we're huge fans of project-based learning, so I hope these HTML projects have bolstered your confidence and sparked a deeper interest in web development with HTML.

With new projects regularly added to this page, be sure to check back often for new opportunities to refine your HTML skills and expand your portfolio.

And remember, you can do all this using our online HTML compiler, so get creative, have fun, and happy coding!

 

Want to sharpen up your HTML and web development skills? Check out:

Dr. Angela Yu's Complete Web Development Bootcamp

Frequently Asked Questions

1. Where Can I Create an HTML Project?

The easiest way to create and work on HTML CSS projects is to create a .html or .htm file and then edit this in a simple text editor like Notepad. However, working on HTML projects in a fully-featured code editor, like Sublime Text or Visual Studio Code, is often easier.

2. How Do I Practice HTML and CSS Projects?

If you’re a beginner, the best way to practice HTML website projects is to check out the first half of our list and work through the HTML CSS projects for beginners. When you’re confident in your skills, try some of the more advanced HTML projects. Alternatively, if you’re an experienced dev, try any of our advanced HTML projects.

3. Is HTML Easy for Beginners?

Absolutely, HTML is easy for beginners to learn because of its simple syntax and structure, which makes it easy to quickly build your own websites. It’s also a great stepping stone for other languages, like JavaScript, often used with HTML for front-end development.

4. Why Do We Use HTML in Projects?

HTML is used in projects because it provides structure to static pages and dynamic web pages, it separates content and presentation via CSS, it has accessibility features, it has cross-platform compatibility, and it is ideal for SEO due to semantic tags.

5. Where Can I Run HTML Code?

You can run HTML code by opening your .html file with any popular web browser app, like Chrome, Firefox, Edge, Safari, etc. Alternatively, you can use online code editors to create and view HTML pages or set up a local web server on your own computer with something like Apache HTTP server.

References

1. Stack Overflow. Stack Overflow Developer Survey 2023: Most Popular Technologies [Internet]. Stack Overflow; [date unknown; cited 2024 Jan 15]. Available from: https://survey.stackoverflow.co/2023/#technology-most-popular-technologies

2. Bureau of Labor Statistics, U.S. Department of Labor. Occupational Employment and Wages, May 2022, 15-1254 Web Developers and Digital Interface Designers [Internet]. [updated 2021 Mar 31; cited 2024 Jan 15]. Available from: https://www.bls.gov/oes/current/oes151254.htm

3. Google Developers. Get an API Key for Google Maps JavaScript API [Internet]. Google; [date unknown; cited 2024 Jan 15]. Available from: https://developers.google.com/maps/documentation/javascript/get-api-key

4. OpenWeather. How to start [Internet]. OpenWeather; [date unknown; cited 2024 Jan 15]. Available from: https://openweathermap.org/appid

By Robert Johns

Technical Editor for Hackr.io | 15+ Years in Python, Java, SQL, C++, C#, JavaScript, Ruby, PHP, .NET, MATLAB, HTML & CSS, and more... 10+ Years in Networking, Cloud, APIs, Linux | 5+ Years in Data Science | 2x PhDs in Structural & Blast Engineering

View all post by the author

Subscribe to our Newsletter for Articles, News, & Jobs.

Thanks for subscribing! Look out for our welcome email to verify your email and get our free newsletters.

Disclosure: Hackr.io is supported by its audience. When you purchase through links on our site, we may earn an affiliate commission.

In this article

Learn More

Please login to leave comments