Welcome to part 15 of the Web Design HTML5 and CSS3 beginners tutorial. In this session, we will review what we’ve learned so far and apply our skills to build a new webpage. Our focus will be on creating a simple webpage about the Andromeda Galaxy.
To start, we need to decide on the content for our webpage. We will use Wikipedia as our source of information, specifically focusing on the Andromeda Galaxy. This will allow us to utilise our current knowledge to create a functional webpage.
Setting Up the Project Directory
- Create a New Directory: On your desktop, create a folder named website_projects. Inside this folder, create another folder called andromeda_galaxy (using lowercase letters).
- Create an Images Folder: Inside the andromeda_galaxy folder, create a new folder named images to store any images we might use.
- Create the HTML File: Open Notepad++ and create a new blank document. Save this file as index.html in the andromeda_galaxy folder.
Now that we have our project set up, let’s start coding our HTML.
Andromeda Galaxy
Paragraphs
Next, we will add some paragraphs about the Andromeda Galaxy. Copy three paragraphs from the Wikipedia page and paste them into your HTML file, wrapping each paragraph in <p> tags:
Paragraph 1 content...
Paragraph 2 content...
Paragraph 3 content...
Adding an Image
To include an image, first download an appropriate image from the Wikipedia page. Make sure to attribute the author as required. Save the image in the images folder and rename it to andromeda_galaxy.jpg. Then, add the image to your HTML:

Adding a Reference
Below the image, include a reference to the image source:
Image credit: [Author Name]
Creating a Table
Next, we will create a table to display some data about the Andromeda Galaxy. Use the following structure:
Column 1
Column 2
Column 3
Column 4
Data 1
Data 2
Data 3
Data 4
Embedding a Video
To enhance our webpage, we can embed a YouTube video. Find a relevant video about the Andromeda Galaxy, click on the share button, and select embed. Copy the embed code and paste it into your HTML:
Adding a Google Map
Next, we will embed a Google Map showing the NASA Johnson Space Center. Search for the location on Google Maps, click on the share button, and select embed. Copy the HTML code and paste it into your webpage:
Useful Information List
Create a section for useful information using an unordered list:
Useful Information
Final Touches
Add a copyright notice at the bottom of the page:
© 2023 Andromeda Galaxy Information
In this tutorial, we have built a simple HTML5 webpage about the Andromeda Galaxy using our knowledge of HTML and CSS. We covered essential elements such as headings, paragraphs, images, tables, and embedded content. As we move forward, we will explore CSS to enhance the visual appeal of our webpages. Join me in the next tutorial where we will dive into CSS3 and learn how to style our pages effectively!
