Friday, October 6, 2023

Image Size — Width and Height

  Image Size-Width and Height

You can use the style attribute to specify the width and height of an image.

You can use the style attribute to specify the width and height of an image.

Example

<!DOCTYPE html>
<html>
<body>

<h2>Image Size</h2>

<p>Here we use the style attribute to specify the width and height of an image:</p>

<img src="images/chapati.jpeg" alt="chapati" style="width:500px; height:300px;">

</body>
</html>

A new webpage opens with image that we have selected with the specified height and width

Height and Width

Alternatively, you can use the width and height attributes:

Example:

<!DOCTYPE html>
<html>
<body>

<h2>Image Size</h2>

<p>Here we specify the width and height of an image with the width and height attributes:</p>

<img src="images/Icecream.jpg" alt="Ice Cream" width="500" height="600">

</body>
</html>

A new webpage opens with image that we have selected with the specified height and width attributes:

Images in Another Folder

If you have your images in a sub-folder, you must include the folder name in the src attribute:

Example

<!DOCTYPE html>
<html>
<head>
<title>Image</title>
</head>
<body>
<img src="images/nature.jpeg" alt="nature" width="200" height="200">
</body>
</html>

A new webpage opens with image which is located in the sub folder

Animated Images

HTML allows animated GIFs:

Example

<!DOCTYPE html>
<html>
<head>
<title>
Dog
</title>
</head>

<body>
<p>The alt attribute should reflect the image content, so users who cannot see the image get an understanding of what the image contains:</p>
<img src="images/cutedog.gif"
alt="cute dog" width="200">


</body>
</html>

A new webpage opens with animated image :

As it is screenshot you can not see that the image is moving but you can see it once you use the above code

Image Floating

Use the CSS float property to let the image float to the right or to the left of a text:

Example

<!DOCTYPE html>
<html>
<body>

<h2>Floating Images</h2>
<p><strong>Float the image to the right:</strong></p>

<p>
<img src="images/dog.jfif" alt="cute dog" style="float:right;width:42px;height:42px;">
A paragraph with a floating image. A paragraph with a floating image. A paragraph with a floating image.
</p>

<p><strong>Float the image to the left:</strong></p>
<p>
<img src="images/dog.jfif" alt="cute dog" style="float:left;width:42px;height:42px;">
A paragraph with a floating image. A paragraph with a floating image. A paragraph with a floating image.
</p>

</body>
</html>

Thursday, October 5, 2023

HTML Images

                                      HTML Images

Images can improve the design and the appearance of a web page.

FOR Example:

<!DOCTYPE html>
<html>
<head>
<title>
Dog
</title>
</head>

<body>
<p>The alt attribute should reflect the image content, so users who cannot see the image get an understanding of what the image contains:</p>
<img src="images/cutedog.gif"
alt="cute dog" width="200">


</body>
</html>

A new webpage opens with the image that has been selected as above:

HTML Images Syntax

The HTML <img> tag is used to embed an image in a web page.

Images are not technically inserted into a web page; images are linked to web pages. The <img> tag creates a holding space for the referenced image.

The <img> tag is empty, it contains attributes only, and does not have a closing tag.

The <img> tag has two required attributes:

  • src — Specifies the path to the image
  • alt — Specifies an alternate text for the image

Syntax

<img src="url" alt="alternatetext">

The src Attribute

The required src attribute specifies the path (URL) to the image.

Note: When a web page loads, it is the browser, at that moment, that gets the image from a web server and inserts it into the page. Therefore, make sure that the image actually stays in the same spot in relation to the web page, otherwise your visitors will get a broken link icon. The broken link icon and the alt text are shown if the browser cannot find the image.

Example

<!DOCTYPE html>
<html>
<head>
<title>Image</title>
</head>
<body>
<img src="images/nature.jpeg" alt="nature" width="200" height="200">
</body>
</html>

A new webpage opens with the nature image that has been inserted as above:

The alt Attribute

The required alt attribute provides an alternate text for an image, if the user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).

The value of the alt attribute should describe the image:

Example

<!DOCTYPE html>
<html>
<body>

<h2>Alternative text</h2>

<p>The alt attribute should reflect the image content, so users who cannot see the image get an understanding of what the image contains:</p>

<img src="images/Icecream.jpg" alt="IceCream" width="460" height="345">

</body>
</html>

A new webpage opens image with the alternative text as above:

Wednesday, October 4, 2023

HTML Links — Use an Image as a Link

 HTML Links — Use an Image as a Link

To use an image as a link, just put the <img> tag inside the <a> tag:

Example

<!DOCTYPE html>
<html>
<body>

<h2>Image as a Link</h2>

<p>The image below is a link. Try to click on it.</p>

<a href="https://google.com"><img src="images/dog.png" alt="cute dog"></a>

</body>
</html>

A new webpage opens with the dog picture and when you click on it you will be redirected to link:

Link to an Email Address

Use mailto: inside the href attribute to create a link that opens the user's email program (to let them send a new email):

Example

<!DOCTYPE html>
<html>
<body>

<h2>Link to an Email Address</h2>

<p>To create a link that opens in the user's email program (to let them send a new email), use mailto: inside the href attribute:</p>

<p><a href="abcd@example.com">Send email</a></p>

</body>
</html>

A new webpage is redirected by opening a mail:

Button as a Link

To use an HTML button as a link, you have to add some JavaScript code.

JavaScript allows you to specify what happens at certain events, such as a click of a button:

Example

<!DOCTYPE html>
<html>
<head>
<title>
button
</title>
</head>
<body>
<a href="https://www.youtube.com/watch?v=tDqTXipQmBU&list=PLZPZq0r_RZOOxqHgOzPyCzIl4AJjXbCYt&index=11">
<button style="font-size:25px; background-color:blue; color:white; border-radius:30px">click me</button>
</a>

<a href="https://www.google.com/">
<button style="font-size:30px; background-color:green; color:white; border-radius:40px ">
click me
</button>
</a>

<a href="https://www.google.com/">
<button style="font-size=20px; background-color:blue; color:white; border-radius:35px">
click me
</button>
</a>
</body>
</html>

A new webpage opens with the buttons colored and when you click on it you will be redirected to other websites:

Building Static Website(part6) HTML Lists

  Building Static Website (part6) HTML Lists Today, let us add some lists to our detailed view section by using html lists. Lists: List is a...