-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from MastersAcademy/1-html_NosatskyiK
Added files index.html and style.css
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
homeworks/kostiantyn.nosatskyi_NosatskyiK/PokemonProject/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Document</title> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<article> | ||
<h1>About me</h1> | ||
<p class="main_text"> | ||
Hi! My name is Kostiantyn Nosatskyi and I'm a Junior Frontend Developer. I am already familiar with main Web Technologies like HTML, CSS, JavaScript and Git version control system. | ||
</p> | ||
<p class="main_text"> | ||
This page was developed during the course | ||
<a class="link" href="https://www.mastersacademy.education/frontend-for-beginners-it" target="_blank"> | ||
'Frontend for beginners' from Masters Academy in 2023.</a> | ||
</p> | ||
<p class="main_text"> | ||
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. | ||
</p> | ||
<p class="main_text"> | ||
You can contact me via telegram by nickname <a class="link" href="https://t.me/kostyaa_n" target="_self">@kostyaa_n</a> | ||
and/or check out my <a class="link" href="https://github.com/NosatskyiK">GitHub</a>. | ||
</p> | ||
</article> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
homeworks/kostiantyn.nosatskyi_NosatskyiK/PokemonProject/style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
h1 { | ||
font-size: 48px ; | ||
font-family: Roboto, sans-serif ; | ||
font-weight: 700 ; | ||
line-height: 32px; | ||
} | ||
|
||
.main_text { | ||
font-family: Roboto, serif ; | ||
font-size: 22px ; | ||
font-weight: 400 ; | ||
line-height: 32px; | ||
} | ||
|
||
.link { | ||
text-decoration: underline ; | ||
color: #EF4934 ; | ||
} | ||
|