DEV Community

Cover image for Web Development: Build your Portfolio Website Design using HTML
Muthu Annamalai Venkatachalam
Muthu Annamalai Venkatachalam

Posted on • Updated on • Originally published at muthuannamalai.tech

Web Development: Build your Portfolio Website Design using HTML

Being a web developer and having a portfolio helps a lot while applying for opportunities and acts as a showcase of our talent, so in this article, we will learn how to make a simple portfolio by just using HTML. This portfolio might contain

  1. An image displayed as a profile photo
  2. Uses emphasis and strong tags for formatting
  3. Has tables to better display data
  4. Links to other pages like Hobbies and Contact(displayed at bottom of the page)
  5. A contact form that emails details.

File structure:

  • index.html
  • hobbies.html
  • contact.html
  • images folder(You will put your photo into this folder and use it as your profile photo)

Code Implementation:

1- For index.html file:

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
  <meta charset="utf-8">
  <title>Muthu Annamalai Venkatachalam's Personal Site</title>
</head>
<body>
  <table cellspacing="20">
    <tr>
      <td><img src="images/Muthu Profile Photo.jpeg" alt="Profile Picture" width="200" height="200" /></td>
      <td>
        <h1>Muthu Annamalai Venkatachalam</h1>
        <p><em>An Aspiring Software Developer | Student | <strong>Web Developer</strong></em></p>
        <p>A Engineer who works 24/7 to improve himself. I'm a problem-solver at heart, highly teachable and eager to learn new skills, fun to work with, have a killer work ethic, and above all, extremely curious and ask a lot of questions.My Motto is to Aspire To Inspire Before we Expire</p>
      </td>
    </tr>
  </table>
  <hr />
  <h3>My Education</h3>
  <ul>
    <li>Srimathi Sundaravalli Memorial School</li>
    <li>NSN Matriculation Higher Secondary School</li>
    <li>Panimalar Engineering College</li>
  </ul>
  <hr />
  <h3>Work Experience</h3>
  <table border="1px">
    <tr>
      <th>Dates</th>
      <th>Work</th>
    </tr>
    <tr>
      <td>July2020 To July2020</td>
      <td>Campus Ambassador at IMUN</td>
    </tr>
    <tr>
      <td>August2020 To August 2020</td>
      <td>Campus Ambassador at TechieGen</td>
    </tr>
    <tr>
      <td>February2021 To May2021</td>
      <td>Open Source Contributor at GSSOC'21</td>
    </tr>
  </table>
  <hr />
  <h3>Skills</h3>
  <table cellspacing="10">
    <tr>
      <td>HTML</td>
      <td>⭐⭐⭐</td>
    </tr>
    <tr>
      <td>CSS</td>
      <td>⭐⭐⭐</td>
    </tr>
    <tr>
      <td>Java</td>
      <td>⭐⭐⭐</td>
    </tr>
    <tr>
      <td>JavaScript</td>
      <td>⭐⭐⭐</td>
    </tr>
  </table>
  <hr />
  <a href="hobbies.html">My Hobbies</a>
  <a href="contact.html">Contact Me</a>
</body>

</html>

Enter fullscreen mode Exit fullscreen mode

2- For hobbies.html file:

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
  <meta charset="utf-8">
  <title>My Hobbies</title>
</head>
<body>
  <h3>My Hobbies</h3>
  <ol>
    <li><a href="https://www.telegraph.co.uk/content/dam/cricket/2019/04/01/TELEMMGLPICT000192546944_trans_NvBQzQNjv4Bq900leoZVuq6ru6F43OqP_mjnRw13ichYxOyPsROrpNM.jpeg">I love Playing Cricket</a></li>
    <li><a href="https://filmdaily.co/wp-content/uploads/2020/05/cbd-lede-1300x813.jpg">I love Watching Movies</a></li>
    <li><a href="https://static.toiimg.com/photo/67625374.cms">I love Listening To Music</a></li>
  </ol>
</body>
</html>

Enter fullscreen mode Exit fullscreen mode

3- For the contact.html file

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
  <meta charset="utf-8">
  <title>My Contact</title>
</head>
<body>
  <h1>My Contact Details</h1>
  <p>My Address: No:63(A) , Ground Floor, Ramani Illam,2nd Cross Street, Chandran Nagar, Chromepet,Chennai-44</p>
  <p>My Phone Number: 7358833533</p>
  <p>My Gmail: muthuannamalai2002@gmail.com</p>
  <form class="" action="mailto:muthuannamalai2002@gmail.com" method="post" enctype="text/plain">
    <label>Your Name</label>
    <input type="text" name="Your Name" value=""><br />
    <label>Your email</label>
    <input type="email" name="Your Email" value="" /><br />
    <label>Your Message</label><br />
    <textarea name="Your Message" rows="10" columns="30"></textarea><br />
    <input type="submit" name="" />
  </form>
</body>
</html>

Enter fullscreen mode Exit fullscreen mode

Now the project is ready!

This is the output:

Screenshot (1192).png

See it live: https://muthuannamalai12.github.io/CV/

Link To GitHub Repository: https://github.com/muthuannamalai12/CV

The End

I hope you found this article valuable. If yes do let me know in the comments 😊

You can now extend your support by buying me a Coffee.😊👇

Buy Me A Coffee

Thanks for Reading 😊

Latest comments (2)

Collapse
 
grahamthedev profile image
GrahamTheDev

A few things to be aware of:

Tables

Don't use tables for layout (your profile picture bit and your skills bit). This is really important for people who use a screen reader (a piece of software that reads the page aloud, normally used by people with a vision impairment).

Instead of tables look into using semantic HTML with CSS.

Learn how to use the correct elements depending on content and you will already be better than 90% of developers and massively increase your job prospects when the time comes!

So swap the table at the top for some <div>s and perhaps wrap them in a <section> element.

Swap the table at the bottom for a dl or similar.

I will leave you to research those but if you need any help understanding any of them just let me know.

Forms

Along the same lines you contact form is not accessible either.

In the following example I have corrected a few things:-

  1. I added for="IDofElement" to your labels and a corresponding ID to the input. This links them together which means people who use a screen reader here what the input is called (otherwise it will just read "input" which is not very useful!) and has the added bonus of making it so you can click the label to focus the corresponding input.
  2. I changed your <input type="submit"> to a <button>. That is the correct way to do it in modern HTML.
  3. I added type="email" to the email field as this offers some basic validation (to check someone entered an email in the correct format).
<form class="" action="mailto:xxxxDONT INCLUDE YOUR EMAIL IN EXAMPLES TO AVOID SPAMMERSxxx" method="post" enctype="text/plain">
    <label for="your-name">Your Name</label>
    <input type="text" name="Your Name" value="" id="your-name"><br />
    <label for="your-email">Your email</label>
    <input type="email" name="Your Email" value="" type="email" id="your-email"><br />
    <label for="your-message">Your Message</label><br />
    <textarea name="Your Message" rows="10" columns="30" id="your-message"></textarea><br />
   <button type="submit">Submit</button>
</form>
Enter fullscreen mode Exit fullscreen mode

Navigation

Navigation is really important on a site, every page should ideally have your main menu at the top.

Navigation should be something like:-

<header>
<nav>
    <ul>
        <li><a href="https://muthuannamalai12.github.io/CV/">Home</a></li>
        <li><a href="https://muthuannamalai12.github.io/CV/hobbies.html">My Hobbies</a></li>
        <li><a href="https://muthuannamalai12.github.io/CV/contact.html">Contact Me</a></li>
    </ul>
</nav>
</header>
Enter fullscreen mode Exit fullscreen mode

So we use a <header> element to represent introductory content.

We then put a <nav> element within the <header> as that signifies navigation. This helps people who use a screen reader know that they have reached the site navigation.

We then use an <ul> and <li> to add each of the hyperlinks. Yet again this is really useful for people who use a screen reader as they will be told "item 1 of 3" when they enter the navigation so they know how many menu items there are.

One thing I didn't include was handling "current page" - there are numerous ways to do that but I didn't want to completely over load you!

Add navigation to each of the pages so that when someone visits your "hobbies" page they can still get to the contact page and the home page easily.

I hope I didn't overload you!

That is probably a couple of weeks worth of things to learn in one comment so don't be overwhelmed.

Just tackle them one at a time and as I said, if you need help, just shout!

Collapse
 
muthuannamalai12 profile image
Muthu Annamalai Venkatachalam

Thank you for pointing it out I will surely work on these