September 7

Элементы html

Тело страницы

<body></body>

<html></html>

<!DOCTYPE html>

<head></head>

<select name="select">
<option value="value1">Значение 1</option>
<option value="value2" selected>Значение 2</option>
<option value="value3">Значение 3</option>
</select>

<figure>
<img src="480.jpg" alt="Elephant at sunset" />
<figcaption>An elephant at sunset</figcaption>
</figure>

Фрейм

<iframe id="" title="" width="300" height="200" src="https://"></iframe>

Теги head

<title></title>

<link href="styles.css" rel="stylesheet">

  • type="text/css"

<meta name="viewport" content="width=device-width, initial-scale=1">

  • name="keywords"
  • content="слова слова"
  • name="viewport"
  • name="description"
  • charset="UTF-8"
  • name="author"
  • content="width=device-width, initial-scale=1.0"

Заголовки

<h1></h1>

<h2></h2>

<h3></h3>

Таблицы

<td></td> - ячейка

<tr></tr> - строка

<table></table>

<tbody></tbody>

Ссылки

<a href="Ссылка"></a>

Текст

<p></p>

Блоки

<div></div>

<article></article>

<section></section>

<nav><nav> - меню

<main></main>

<footer></footer> - подвал

<header></header> - шапка

Спойлер

<details><summary>Заголовок</summary>Содержание</details>

details {
...
}

summary {
...
}

details[open] {
...
}

details[open] summary {
...
}

Картинка

<img src="Ссылка на картинку или название файла">

Комментарии

<! - - Текст но - вместе - - >

Кнопка

<button></button>

  • <button onclick="window.location.href = '#';">Кнопка</button>

Скрипт

<script></script>

<script src="js/script.js"></script> - внешний скрипт

Списки

<ul><li>Пункт</li></ul>

Формы

<form></form>

  • <label for="name">Логин:</label>
  • <input type="text" id="name" name="name"><br><br>
  • <label for="password">Пароль:</label>
  • <input type="password" id="password" name="password"><br><br>
  • <input type="submit" value="Отправить">
  • <input type="range" name="ползунок" min="0" max="100" value="50">

<label>Click me <input type="text" /></label>

Цитата

<blockquote></blockquote>

<svg></svg>

<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="100" height="100" viewBox="0 0 50 50">

<path d="M 0 7.5 L 0 12.5 L 50 12.5 L 50 7.5 Z M 0 22.5 L 0 27.5 L 50 27.5 L 50 22.5 Z M 0 37.5 L 0 42.5 L 50 42.5 L 50 37.5 Z"></path>

</svg>

<svg class="c-icon" width="32" height="32" viewBox="0 0 20 20">

<use xlink:href="icons.svg#facebook"></use>

</svg>

<map name="primary">

<area shape="circle" coords="75,75,75" href="-.html" />

<area shape="circle" coords="275,75,75" href="-.html" />

</map>

<img usemap="#primary" src="https://img4.teletype.in/files/___.png" />

<figure>

<img src="___.png" alt="Текст" width="304" height="228">

<figcaption>Рис. 1. - Норвегия.</figcaption>

</figure>

Атрибуты

class=""

id=""

style=""

<a id="link" href="https://metanit.com" onclick="return a_click(this)">Metanit.com</a>

<script>
// в обработчик передается ссылка
function a_click(anchor){
// получаем адрес ссылки
console.log(anchor.href);
return false; // запрещаем переадресацию
}
</script>

<a id="link" href="https://metanit.com" onclick="return a_click(this)">