From ca365d096a22d61a56adbd0b9b209f643b37becc Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Thu, 25 Aug 2016 21:21:09 +0300 Subject: [PATCH] Basic page --- .editorconfig | 10 +++++++++ index.html | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 27 +++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 .editorconfig create mode 100644 index.html create mode 100644 style.css diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..dbeb07c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 + +[*.html] +indent_size = 2 diff --git a/index.html b/index.html new file mode 100644 index 0000000..5289603 --- /dev/null +++ b/index.html @@ -0,0 +1,59 @@ + + + + + + Здравствуйте + + +
+ +

Здравствуйте,

+

+ меня зовут Антон Вахрушев, и это моя домашняя страница.
+ Здесь вы можете. +

+ +

Посмотреть

+ + +

Почитать

+ + +

Похвалить

+ + +

Написать

+ + +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..ce9dd07 --- /dev/null +++ b/style.css @@ -0,0 +1,27 @@ +body { + font-size: 18px; + font-family: 'PT Serif', Serif; +} + +.content { + width: 840px; + margin: 0 auto; +} + +.greeting { + margin-top: 1.8em; + font-size: 3.4em; + margin-bottom: 0.6em; + font-weight: normal; +} + +.heading { + margin-top: 2.3em; + margin-bottom: 0.4em; + font-size: 1.2em; + font-weight: normal; +} + +.text { + margin-bottom: 0.8em; +}