Skip to content

JoinCODED/TASK-Html-profile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

Profile Website

  • Fork and clone this repository and open it in VSCode

Instructions

You are going to create a profile website from scratch using HTML only.

Section 1:

  • Start section with a separator comment <!-- Section 1 -->
  • Create a division using the tag <div> and give a style attribute of background-color:antiquewhite
  • Type your name using <h1>...</h1> tag in the top
  • Change the title of the website using the <title>...</title> tag to your name e.g. (Ahmad Hasan)
  • Type a description about yourself using the tag <p>...</p>
  • Include your image using the tag <img src="URL HERE" />
  • End the sections using the <hr/>

Section 2:

  • Start section with a separator comment <!-- Section 2 -->

  • Create a division using the tag <div> and give a style attribute of background-color: azure;

  • H2 with text "My hobbies"

  • list 5 of your hobbies in a list from your choice (ul / ol).

  • Don't forget to use the tag li to add each hobby to the list

    <ul>
      <li>Hobby</li>
      <li>Hobby</li>
      <li>Hobby</li>
    </ul>
  • If you click on any hobby, it should take you to an image that represents it

  • Make your first hobby bold using the tag <strong>

  • End the sections using the <hr/>

Section 3:

  • Start section with a separator comment <!-- Section 3 -->
  • Create a footer using div with a style attribute background-color: black; color: white;
  • Using the tag <a href="link">...</a>, add inside the footer links with titles for your social media account (e.g. twitter). Where if you click on it, it will redirect to your account directly. (It should open in a new tab!)
  • Using the tag <a>, add a link with title "whatsapp me", where if you click on it, it will open Whatsapp web to directly contact your number. Learn how
  • Each link should be in a separate line

Section 4: Bonus!

  • Use 4 new tags that are not explained and not included in this task. Check out w3schools.com for more information.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published