Skip to content

Instantly share code, notes, and snippets.

View h4's full-sized avatar
💭
I may be slow to respond.

Mikhail Baranov h4

💭
I may be slow to respond.
View GitHub Profile
#header {
height: 100px;
}
.footer {
height: 100px;
}
h1 {
color: red;
push: none;
}
@h4
h4 / sample.css
Created December 12, 2011 12:14
Lesson 2
.index {
color: #900;
}
@h4
h4 / nested_links.html
Created December 17, 2011 07:17
Вложенные списки
@h4
h4 / CSS-common-mistaces-1.css
Created December 17, 2011 12:18
Типичные ошибки в CSS
/*-----------------------
Неправильно указан селектор класса */
my-сlass {
/* Не работает. Браузер будет искать ТЕГ my-class */
}
.my-class {
/* Правильный селектор класса. Точка перед именем класса */
}
@h4
h4 / table-and-header.html
Created December 19, 2011 20:02
Ответы на вопросы по курсу «Дизайн и разработка веб-узлов. Часть 1»
<!--
как сделать чтобы между заголовком и таблицей был отступ?
-->
<h1>Заголовок для таблицы</h1>
<table>
<tr>
<td>Ладья</td>
<td>Конь</td>
@h4
h4 / doctype_html.html
Created February 7, 2012 10:51
Декларации DOCTYPE
<!--
Декларации HTML
1. Не обязательны закрывающие теги для p, h1...h6, pre, li
2. Значения атрибутов можно не заключать в кавычки
3. Возможен ЛЮБОЙ регистр для имён элементов и атрибутов
-->
<!--HTML 4.01 Strict — строгое соответствие спецификации HMTL 4.01-->
@h4
h4 / 1.xhtml1.html
Created February 7, 2012 11:19
Стандартная разметка страницы
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Главная страница</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</html>
<body>
<div class="page">
<div class="header">
<img src="logo.png" alt="Логотип" />
@h4
h4 / html-and-xhtml.html
Created February 7, 2012 12:30
Отличия между html и xhtml
<H1>Корректная html-разметка</H1>
<ul class=menu>
<li>О компаниии
<li>Услуги
<li>Контакты
</ul> <p>
<img
src=logo.png
alt=Логотип>
@h4
h4 / base.html
Created February 8, 2012 18:54
Способы подключения css
<!-- подключение внешнего файла css -->
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
@h4
h4 / dabblet.css
Created February 8, 2012 20:02
Untitled
body {
font:normal 16px Helvetica, Arial, sans-serif;
background: #EDEDED
url(http://www.starwars.com/img/explore/encyclopedia/technology/millenniumfalcon_hero3.jpg)
top center no-repeat;
color:#fff;
}
h1 {
font-size:36px;
line-height:28px;