- Fork and clone this repository and open it in VSCode
You are going to create a profile website from scratch using HTML only.
- Start section with a separator comment
<!-- Section 1 -->
- Create a division using the tag
<div>
and give a style attribute ofbackground-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 namee.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/>
-
Start section with a separator comment
<!-- Section 2 -->
-
Create a division using the tag
<div>
and give a style attribute ofbackground-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/>
- Start section with a separator comment
<!-- Section 3 -->
- Create a footer using
div
with astyle
attributebackground-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
- Use 4 new tags that are not explained and not included in this task. Check out w3schools.com for more information.