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_IgorFromUa #84

Merged
merged 1 commit 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
30 changes: 30 additions & 0 deletions homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!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 rel="stylesheet" type="text/css" href="./styles.css">
<title>GamesProject</title>
</head>
<body>
<section class="about">
<h1 class="about__title">About me</h1>
<p class="about__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.<br>
<br>
This page was developed during the course <a class="about__link"
href="https://www.mastersacademy.education/frontend-for-beginners-it">'Frontend
for beginners' from Masters Academy in 2023.</a>
<br>
<br>
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.<br>
<br>
You can contact me via [Links to Socials Nets] and/or check out my GitHub.

</p>
</section>
</body>
</html>
23 changes: 23 additions & 0 deletions homeworks/ihor.zapisochniy_IgorFromUA/GamesProject/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.about {
width: 575px;
font-family: Roboto, sans-serif;
}

.about__title {
font-size: 48px;
font-weight: 700;
line-height: 32px;
color: #221F1F;
margin: 0 0 24px;
}

.about__text {
font-size: 22px;
font-weight: 400;
line-height: 32px;
color: #221F1F;
}

.about__link {
color: #EF4934;
}
Loading