Skip to content

Commit

Permalink
Merge pull request #91 from MastersAcademy/1-html_NosatskyiK
Browse files Browse the repository at this point in the history
Added files index.html and style.css
  • Loading branch information
vladyslav-yermolin-moc authored Oct 21, 2023
2 parents 89a1414 + e8da62b commit 2ac8f9b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
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 homeworks/kostiantyn.nosatskyi_NosatskyiK/PokemonProject/style.css
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 ;
}

0 comments on commit 2ac8f9b

Please sign in to comment.