-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from MastersAcademy/1-html_olyatmchshn
html-homework
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
homeworks/olha.tymchyshyn_olyatmchshn/PokemonProject/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
25
homeworks/olha.tymchyshyn_olyatmchshn/PokemonProject/styles.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |