Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Зображення Спеціального Призначення | Медіа та Таблиці
Знайомство з HTML
course content

Зміст курсу

Знайомство з HTML

Знайомство з HTML

1. Веб Розробка
2. Теги та Атрибути
3. Структура Документа
4. Медіа та Таблиці
5. Форми

bookЗображення Спеціального Призначення

Зображення, на які можна натиснути

Зображення, на які можна натиснути, - це зображення на веб-сторінці, на які можна натиснути, зазвичай для переходу на іншу веб-сторінку або виконання інших дій. Як правило, такий підхід потрібен, коли ми маємо справу з інтернет-магазинами. Користувачі звикли до того, що, натиснувши на зображення, вони отримують картку з повним описом товару і ціною.

Щоб зробити зображення клікабельним, ми можемо обернути тег <img> в тег <a>. Наприклад:

У цьому прикладі тег <a> вказує URL-адресу для посилання в атрибуті href, а тег <img/> вказує зображення для відображення. Коли користувач клацне на зображенні, браузер перейде на URL-адресу, вказану в атрибуті href.

In this example, the <a> tag specifies the URL to link to in the href attribute, and the <img/> tag specifies the image to display. When the user clicks on the image, the browser will navigate to the URL specified in the href attribute.

  • figure - елемент містить елементи figcaption та img;
  • figcaption - задає текст підпису, видимий для користувачів;
  • img - задає зображення для відображення.
html

index

css

index

js

index

copy
  • figure - element contains both the figcaption and img elements;
  • figcaption - specifies the caption text, visible for users;
  • img - specifies the image to display.

Image Optimization

This is important for web pages, where large image files can slow page load times and make the website feel sluggish. By following the following tips, we can improve the overall performance and accessibility of the website.

  • Resize images to the appropriate size. Resize images to the size they will be displayed on the web page rather than uploading large images and resizing them using HTML or CSS;
  • Use appropriate file formats. Generally, we use JPEGs for photographs, PNGs for graphics, and images with transparency. Avoid larger BMP or TIFF files;
  • Compress images. There is a huge amount of online tools which can compress images without compromising quality. Do it before uploading images to the website.

Note

We can use the following sources to compress images: Raster graphic optimization, Vector graphic optimization. What is the difference between them? - We will consider this in the next chapter.

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 4. Розділ 3
some-alt