Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add homework 1 #88

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions homeworks/lesia.turua_lesiaturuta/PokemonProject/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!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>PokemonProject</title>
<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;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>

<body>
<main class="main">
<article class="info">
<h1 class="description">About me</h1>
<p class="text">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="text">This page was developed during the course
<a class="link--red" href="https://www.mastersacademy.education/frontend-for-beginners-it"
target="_blank">'Frontend for beginners'
from Masters Academy in 2023.</a>
</p>
<p class="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="text">You can contact me via [Links to Socials Nets] and/or check out my GitHub.</p>
</article>
</main>
</body>

</html>
27 changes: 27 additions & 0 deletions homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
* {
margin: 0;
padding: 0;
vladyslav-yermolin-moc marked this conversation as resolved.
Show resolved Hide resolved
}

body {
font-family: "Roboto", sans-serif;
color: #221F1F;
}

.info {
max-width: 575px;
}

.description {
font-size: 48px;
font-weight: 700;
}

.text {
font-size: 22px;
vladyslav-yermolin-moc marked this conversation as resolved.
Show resolved Hide resolved
font-weight: 400;
}

.link--red {
color: #EF4934;
}
Loading