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

1-html_SviatoslavTaranenko #79

Merged
merged 8 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!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">
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<title>Games Project - About</title>
</head>
<body>
<section class="about">
<div class="about__all">
<div class="about__img">

</div>

<div class="about__text">
<h1 class="about__text_title">About me</h1>
<p class="about__text_inf">
Hi! My name is Sviatoslav and I'm a Junior Frontend Developer. <br>
I am already familiar with main Web Technologies like <br>
HTML, CSS, JavaScript and Git version control system.
</p>
<p class="about__text_inf">
This page was developed during the course
<a class="about__text_link" href="https://www.mastersacademy.education/frontend-for-beginners-it" target="_blank">'Frontend for
<br>
beginners' from Masters Academy in 2023.</a>
</p>
<p class="about__text_inf">
This is a social project from MOCG company where I got <br> an opportunity to work with Frontend mentors and to
<br> create my own small project for the portfolio.
</p>
<p class="about__text_inf">
You can contact me via instagram: <a class="about__text_link" href="https://www.instagram.com/sviat_taranenko" target="_blank">sviat_taranenko</a> and/or
<br> check out my
<a class="about__text_link" href="https://github.com/SviatoslavTaranenko" target="_blank">GitHub</a>.
</p>
</div>
</div>
</section>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.about__all .about__text .about__text_title {
vladyslav-yermolin-moc marked this conversation as resolved.
Show resolved Hide resolved
font-family: "Roboto", sans-serif;
font-weight: 700;
font-size: 48px;
line-height: 32px;
color: #221F1F;
}

.about__all .about__text .about__text_inf {
color: #221F1F;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: 22px;
line-height: 32px;
}

.about__all .about__text .about__text_link {
color: #EF4934;
}