This is a simple HTML portfolio project created as part of the Application Development subject. This project showcases my first experience in web development, where I built a webpage displaying multiple images and names.
This project is a basic HTML page featuring several images with names displayed beneath them. The page uses external CSS for styling, layout, and visuals. The images are aligned in a grid layout to create a simple yet visually appealing structure.
- Displays four images with titles.
- A clean and simple layout with basic styling.
- Responsive design using Flexbox.
- HTML: For the basic structure of the webpage.
- CSS: For styling the page, including Flexbox for layout.
- Flexbox: For creating a responsive, grid-based layout.
To use this project, follow these steps:
-
Clone or Download the Repository:
- If using Git:
git clone <repository_url>
- Alternatively, download the HTML and CSS files directly from the repository.
- If using Git:
-
Open the Project in a Browser:
- After downloading or cloning, open the
index.htmlfile in any modern web browser.
- After downloading or cloning, open the
-
Viewing the Page:
- Open the
index.htmlfile to view the webpage. It will display the images with the name "Wendelyn Paller" under each one.
- Open the
-
Customizing the Content:
- To change the images or names:
- Modify the
<img src="image_url">tags with your image URLs. - Change the text inside the
<h3>tags to update the names.
- Modify the
- To change the images or names:
<div class="container">
<div class="image">
<img src="image_url" alt="Just a photo">
<h3 style="color: #e41595">Wendelyn Paller</h3>
</div>
<!-- Repeat for other images -->
</div>