html-tutorial

HTML Concepts for beginners

This project is maintained by pushdev-code

Other important HTML Tags

Here you will find examples of how to write these important and common HTML tags.

Images

<img src="images/your-image.png" alt="Test image">

Attributes:

Headings

Some texts can be specified as section headings. There are different sizes and importance for each one. They’re from 1-6.

<h1>My main title</h1>
<h2>My top level heading</h2>
<h3>My subheading</h3>
<h4>My sub-subheading</h4>
<h5>My sub-sub-subheading</h5>
<h6>My sub-sub-sub-subheading</h6>

Paragraphs

They’re good to group text and for regular content text.

<p>This is a single paragraph</p>

Lists

Grouping items are very common in internet, like menu items, text options, and to specify multiple topics. They’re good for concise explanations.

There are unsorted lists:

<ul>
  <li>technologists</li>
  <li>thinkers</li>
  <li>builders</li>
</ul>

Ordered lists in which the numbers are important.

<ol>
  <li>this goes first</li>
  <li>the second one goes here</li>
  <li>and the third option appears here</li>
</ol>

Links are very important — they are what makes the web a web! To add a link, we need to use the “anchor” tag <a>.

<a href="https://pushdev.co">Push Dev website</a>

Attributes:

Exercise

  1. Inside your fork html-tutorial repo, under the 2-other-html-tags folder, create a file named tags.html Don’t forget to include the .html extension
  2. Inside of it, create a web page for your Curriculum it must include images (your photo), headings (your name, main cv sections), paragraphs (your resume), lists (skills) and anchors(websites you like the most).
  3. commit your changes
  4. Push the changes to your local copy of the repo.