From 33f1e6a0c942bc11884cf4641d98afdfec13e0f9 Mon Sep 17 00:00:00 2001 From: IgorFromUA Date: Wed, 18 Oct 2023 22:26:00 +0300 Subject: [PATCH] made a layout, added styles --- .../GamesProject/index.html | 30 +++++++++++++++++++ .../GamesProject/styles.css | 23 ++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/index.html create mode 100644 homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/styles.css diff --git a/homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/index.html b/homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/index.html new file mode 100644 index 00000000..58b53e82 --- /dev/null +++ b/homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/index.html @@ -0,0 +1,30 @@ + + + + + + + + GamesProject + + +
+

About me

+

Hi! My name is [Text] and I'm a Junior Frontend Developer. I am already familiar with main + Web Technologies like HTML, CSS, JavaScript and Git version control system.
+
+ This page was developed during the course 'Frontend + for beginners' from Masters Academy in 2023. +
+
+ This is a social project from MOCG company where I got an opportunity to work with Frontend mentors and to + create my own small project for the portfolio.
+
+ You can contact me via [Links to Socials Nets] and/or check out my GitHub. + +

+
+ + diff --git a/homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/styles.css b/homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/styles.css new file mode 100644 index 00000000..5ef47d93 --- /dev/null +++ b/homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/styles.css @@ -0,0 +1,23 @@ +.about { + width: 575px; + font-family: Roboto, sans-serif; +} + +.about__title { + font-size: 48px; + font-weight: 700; + line-height: 32px; + color: #221F1F; + margin: 0 0 24px; +} + +.about__text { + font-size: 22px; + font-weight: 400; + line-height: 32px; + color: #221F1F; +} + +.about__link { + color: #EF4934; +}