Skip to content

Commit

Permalink
Merge pull request #83 from MastersAcademy/1-html_olyatmchshn
Browse files Browse the repository at this point in the history
html-homework
  • Loading branch information
vladyslav-yermolin-moc authored Oct 20, 2023
2 parents 8256986 + 7673b9c commit 7c4175f
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
27 changes: 27 additions & 0 deletions homeworks/olha.tymchyshyn_olyatmchshn/PokemonProject/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokemon</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet">
</head>

<body>
<h1 class="project-header">About me</h1>
<p class="project-description">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.</p>

<p class="project-description">This page was developed during the course
<a class="MA-website" target="_blank" href="https://www.mastersacademy.education/frontend-for-beginners-it">'Frontend for beginners' from Masters Academy in 2023.</a>
</p>

<p class="project-description">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="project-description">You can contact me via [Links to Socials Nets] and/or check out my GitHub.</p>
</body>
</html>
25 changes: 25 additions & 0 deletions homeworks/olha.tymchyshyn_olyatmchshn/PokemonProject/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.project-header {
color: #221F1F;
font-family: Roboto;
font-size: 48px;
font-weight: 700;
line-height: 32px;
}

.project-description {
color: #221F1F;
font-family: Roboto;
font-size: 22px;
font-weight: 400;
line-height: 32px;
width: 575px;
}

.MA-website {
color: #EF4934;
font-family: Roboto;
font-size: 22px;
font-weight: 400;
line-height: 32px;
text-decoration-line: underline;
}

0 comments on commit 7c4175f

Please sign in to comment.