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

feat: create html and css files with main content #70

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
21 changes: 21 additions & 0 deletions homeworks/vladyslav.brusentsov_vBrusentsov/GamesProject/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">

Check failure on line 2 in homeworks/vladyslav.brusentsov_vBrusentsov/GamesProject/index.html

View workflow job for this annotation

GitHub Actions / Lint HTML

Expected indentation of 0 space but found 4 space
<head>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please fix these errors, to pass all our linters chacks.

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>About</title>
</head>
<body>
<header>
<h1>About me</h1>
<p>Hi! My name is Vladyslav Brusentsov and I'm a Junior Frontend Developer. I am already familiar with main Web Technologies like HTML, CSS, JavaScript and Git version control system.

Check failure on line 12 in homeworks/vladyslav.brusentsov_vBrusentsov/GamesProject/index.html

View workflow job for this annotation

GitHub Actions / Lint HTML

Expected indentation of 16 space but found 12 space
This page was developed during the course <a href="https://www.mastersacademy.education/frontend-for-beginners-it">'Frontend for beginners' from Masters Academy in 2023.</a>

Check failure on line 13 in homeworks/vladyslav.brusentsov_vBrusentsov/GamesProject/index.html

View workflow job for this annotation

GitHub Actions / Lint HTML

Expected indentation of 16 space but found 12 space

Check failure on line 13 in homeworks/vladyslav.brusentsov_vBrusentsov/GamesProject/index.html

View workflow job for this annotation

GitHub Actions / Lint HTML

Expected indentation of 16 space but found 12 space
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.
You can contact me via [Links to Socials Nets] and/or check out my GitHub.
</p>
</header>
<main></main>
<footer></footer>
</body>
</html>

Check failure on line 21 in homeworks/vladyslav.brusentsov_vBrusentsov/GamesProject/index.html

View workflow job for this annotation

GitHub Actions / Lint HTML

Expected indentation of 0 space but found 4 space
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@import url(https://fonts.googleapis.com/css?family=Roboto:regular,500,700&display=swap);

h1 {
font-family: Roboto;
font-size: 48px;
font-weight: 700;
}

p {
font-family: Roboto;
font-size: 22px;
font-weight: 400;
}

p a {
color: #EF4934;
}
Loading