Skip to main content

HTML BASICS : CLASS 105

Hello and welcome to the 5th lesson in a series of HTML for beginners tutorials.
In this tutorial, we shall;
  1. modify the size of the image we inserted in the previous lesson
  2. learn how to add links in our website.
At this point, your my_site.html file should have the following code in it.

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
    <h2>NASA | JPL</h2>
    <h1>ON A MISSION</h1>
    <h4>PODCAST</h4>

    <p>A new podcast from NASA</p>

    <ul>
        <li>Arrival</li>
        <li>We Are the World</li>
        <li>Worlds of Wonder</li>
    </ul>

     <ol>
        <li>NASA is cool</li>
        <li>Coding comes second, arguably.</li>
        <li>What is third place?!</li>
    </ol>

    <table>
    <tr>    <th >Name</th>          <th >Title</th>         </tr>
    <tr>    <td >John Doe</td>    <td >Tutor</td>       </tr>
    <tr>    <td >Jane Doe</td>    <td >Student</td>    </tr>
    </table>

     <img src="images/apollo.jpg">
   
</body>
</html> 


Let's get started.
In the previous lesson we learned about how objects can have attributes. We saw how the image object in html has an attribute source (written as src) whose value specifies where the image is located.
Typically, an object has many attributes.
If we considered you as an object (developers do this all the time!) , then we can list a few attributes you have, such as skin color, hair color, height, weight, name, number of legs, etc.
I for one, am a short 3 legged 200lb black man with blue hair named Harry.

An image has has many attributes, in addition to the source attribute we specified.
Among them is width and height.

  1. Open my_site.html in Sublime text (or whichever text editor you decided to use),  and change the code <img src="images/apollo.jpg"> to;
  2.           <img src="images/apollo.jpg" width="450px" height="450px">
  3. Save the file and open it in your browser.
Here we have changed the values of the width and height of our image to 450px each.
'px' stands for 'pixels' and is a unit of measurement for size just like cm or mm or inches.

Great!
Now let's learn a new tag, the anchor tag.
The anchor tag is a tag used to insert a link to another webpage in our site.
It has an opening '<a>' and a closing '</a> tag.
Inside the tag, you specify what the user sees and clicks on.
You use an attribute of the anchor tag, called href (stands for hypertext reference), to specify to which webpage should the browser go, when the link is clicked.

Let's add a link to our site and see how this all works in practice.
  1. Open my_site.html in Sublime text and below the image tag, insert the following code;
  2.      <a href="https://relatableterms.blogspot.com/">Click me to start learning code</a>
  3. Save the file and open it in your browser.
  4. Click the link and it shall take you to the homepage of this website (i.e https://relatableterms.blogspot.com/ ).
  5.  
Awesome!
Another cool thing to know at this point is that html tags can be nested (one tag can be placed inside another tag) .
Let's see how this works by inserting our link into a paragraph.

  1. Change code <a href="https://relatableterms.blogspot.com/">Click me to start learning code</a>   to; 
  2.      <p> Click <a href="https://relatableterms.blogspot.com/"> me </a> to start learning code</p>  
  3. Save the file and open it in your browser.
  4. Notice that only the word 'me' is now clickable. The rest of the words are not clickable because they are no longer inside the anchor tag.
Great! That's enough for today.
As always, here is a video that you can use to follow up on the above instructions.
Leave any question/comment/feedback in the comment section below.
Happy coding.


Comments

Popular posts from this blog

CSS BASICS : CLASS 107

Hello and welcome back to this series of tutorials for beginners in web development. So far we have a simple html page and a css file linked to it. We begin this tutorial by creating new html and css files, in the same folder as where my_site.html is located. We shall call them index.html and index.css respectively. Done? Great! Link the two files together , by opening up index.html in your text editor (e.g. Sublime Text) and typing the following code below the closing title tag  </title>  and before the closing head tag </head> :               <link rel="stylesheet" type="text/css" href="index.css"> Inside the body of your html (i.e after <body> and before </body>),  type the following html code :              <p> This is a paragraph </p>              <p> This is a second paragraph </p>              <p> This is a third paragraph </p> Save your index.html file. Then open the

HTML BASICS : CLASS 109 part I

Hello and welcome back to this tutorial series for beginners in web development. This class introduces the html 'div' tag and form elements. Let's begin by learning about the html 'div' tag. " div " stands for division . It allows you to group and separate content into different sections . Consider the image below. The image above shows a common layout (way of arranging elements)  for many web pages. It consists of;  a top area called the header, where most sites place a logo and site name as well as navigation links (links to other parts of the website)  a bottom area called the footer, where most sites place contact information and social media links. a side bar, which can be on the right side or left side. Some sites have two side bars, one on each side. and a main content area, where the main content of the page is displayed. For example. This blog site has a header at the top. It contains the name of the site 'In Relatable Te

HTML BASICS : TEST YOURSELF

Hello and welcome back. Test your knowledge of the concepts we have learnt so far, by creating a website that looks as seen in images the below, before continuing with the next part.   Click on each image to zoom in (or better yet, save them in your pc). You can get the image used by clicking here . As always, if you have any questions / comments, leave them in the comment section below.