What you will use in this project
- Text formatting
- Lists with <ul> and <li>
- Linking pages with <a>
- Embedding images with <img>
<h1>.In index.html:
<h1> at the top of the body.<p> below with one or two sentences.Only one <h1> per page is best practice.
Refresher: HTML Basic.
In index.html:
<p> with a sentence or two about you.<strong> or <b>.<em> or <i>.<mark> to highlight it.See the full list on HTML Text Formatting.
In index.html:
<h2> like Skills or Hobbies.<ul> below it.<li> items inside.src and alt are required.In index.html:
<img src="..." alt="...">.https://www.w3schools.com/html/img_chania.jpg.alt describing what the image shows.The alt text is read by screen readers.
It also shows if the image fails to load, so it is not optional.
Tip: set width="240" so the image does not fill the screen.
See HTML Images.
In index.html:
<a href="..."> links.https://www.w3schools.com.Tip: add target="_blank" so links open in a new tab.
Use friendly link text like "My GitHub", not "click here".
Refresher: HTML Links.