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

1234 #4

Merged
merged 8 commits into from
Jul 7, 2024
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
Binary file added img/avatar.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/git_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/logo-rsschool3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
121 changes: 119 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,127 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>CV Page Dmitry B.</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@300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hello World</h1>
<header>
<nav>
<div class="container">
<ul class="list">
<li class="list_item"><a href="#" class="list_item_link">About me</a></li>
<li class="list_item"><a href="#" class="list_item_link">Skills</a></li>
<li class="list_item"><a href="#" class="list_item_link">Code Example</a></li>
<li class="list_item"><a href="#" class="list_item_link">Language</a></li>
<li class="list_item"><a href="#" class="list_item_link">Contacts</a></li>
</ul>
</div>
</nav>
</header>
<main>
<div class="section">
<div class="container">
<div class="section_wrap">
<div class="section_wrap_foto">
<img src="img/avatar.jpeg" alt="avatar" class="section_wrap_foto_img">
</div>
<div class="section_wrap_name">
<div class="section_wrap_name_sup"><h1>Дмитрий Белов</h1></div>
<div class="section_wrap_name_sub"><h2>Front - End developer</h2></div>
</div>
</div>
</div>
</div>
<div class="about">
<div class="container">
<h2 class="about_h2">About me</h2>
<div class="about_descr">I like to study and learn something new.
I like to read books, do physical education, listen to music of different genres.
I'm fond of good cars and bikes. I lead active and healhy lifestyle.
I like to work and see the results of my work.
Since childhood, I have had a predisposition to work with electronics and computers.
I like to disassemble, assemble and configure something.
I can build, configure, solve problems with computers.
</div>
</div>
</div>
<div class="skills">
<div class="container">
<h2>Skills</h2>
<ul class="skills_list">
<li class="skills_list_item">HTML</li>
<li class="skills_list_item">CSS</li>
<li class="skills_list_item">JS</li>
<li class="skills_list_item">Git</li>
<li class="skills_list_item">Figma</li>
</ul>
</div>
</div>
<div class="code">
<div class="container">
<div class="code_sup">
<h2>Code Example</h2>
</div>
<div class="code_example">
<pre>
<code>
function factorial(n) {
if (n ❮ 0) return null;
if (n === 0) return 1;
return n * factorial(n-1);
}
</code>
</pre>
</div>
</div>
</div>
<div class="language">
<div class="container">
<h2 class="language_sup">Language</h2>
<div class="language_list">
<ul>
<li>English - (A1-A2)</li>
<li>Russian - native</li>
<li>Ukranian - native</li>
</ul>
</div>
</div>
</div>
<div class="contacts">
<div class="container">
<h2>Contacts:</h2>
<div class="contacts_social">
<a href="https://github.com/DeeBeeUA">GitHub</a>
</div>
<div class="contacts_social">
<a href="https://t.me/middle_1">Telegram</a>
</div>
<div class="contacts_social">
<a href="https://discordapp.com/users/930762901445292032/">Discord</a>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="box">
<div class="box_mygit">
<img src="img/git_logo.png" alt="git_logo">
<div class="box_mygit_text">
<a href="https://github.com/DeeBeeUA">MyGit</a>
</div>
</div>
<div class="box_date">07/07/2024</div>
<div class="box_school">
<a href="https://github.com/rolling-scopes" target="_blank">
<img src="img/logo-rsschool3.png" alt="logo_school">
</a>
</div>
</div>
</div>
</footer>
</body>
</html>
245 changes: 243 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,244 @@
body {
background-color: aquamarine;
* {
box-sizing: border-box;
margin: 0;
}

html {
.roboto-light {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}

.roboto-regular {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-medium {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
}

.roboto-bold {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}

.roboto-black {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: normal;
}
}

.container {
max-width: 1140px;
margin: 0 auto;
}

header {
background: #68768c;
}

header nav .list {
padding: 15px 0;
display: flex;
justify-content: space-between;
list-style-type: none;

}

header nav .list_item_link {
color: #000;
font-family: Roboto;
font-weight: 500;
font-size: 16px;
text-decoration: none;
}

header nav .list_item_link:hover{
color: #ffffffe5;
font-family: Roboto;
font-weight: 500;
font-size: 16px;
text-decoration: none;
}

main {
padding-top: 15px;
background-color: #FFFDD0;
}


.section_wrap {
display: flex;
justify-content: space-around;
}

.section_wrap_foto_img {
max-width: 250px;
height: auto;
border-radius: 50%;
}

.section_wrap_name {
padding-top: 100px;
}

.section_wrap_name_sup {
font-family: Roboto;
font-weight: 900;
font-size: 24px;
}

.section_wrap_name_sub {
font-family: Roboto;
font-weight: 700;
font-size: 18px;
text-align: center;
}

/* section about */

.about {
padding-top: 15px;
}

.about_h2 {
font-family: Roboto;
font-weight: 700;
font-size: 24px;
text-align: center;
}

.about_descr {
padding-top: 15px;
font-family: Roboto;
font-weight: 300;
font-size: 18px;
}

/* section skills */

.skills {
margin-top: 45px;
}

.skills h2 {
font-family: Roboto;
font-weight: 700;
font-size: 24px;
text-align: center;
}

.skills_list {
margin-top: 15px;
display: flex;
justify-content: space-around;
padding: 0;
}

.skills_list_item {
font-family: Roboto;
font-weight: 500;
font-size: 24px;
}

.code {
padding-top: 45px;
}

.code_sup h2 {
font-family: Roboto;
font-weight: 700;
font-size: 24px;
text-align: center;
}

/* language */

.language {
padding-top: 45px;
}

.language_sup {
font-family: Roboto;
font-weight: 700;
font-size: 24px;
text-align: center;
}

.language_list {
padding: 15px 0;
display: flex;
justify-content: center;
}

.language_list ul li {
font-family: Roboto;
font-weight: 300;
font-size: 18px;
}

.contacts {
padding: 15px 0;
}

.contacts h2 {
text-align: center;
}

.contacts_social {
text-align: center;
padding-top: 5px;
}

footer {
padding: 15px;
background: #68768c;
}

.box {
display: flex;
justify-content: space-around;
}

.box_mygit {
display: flex;
}

.box_mygit img {
display: block;
width: 50px;
height: 50px;
}

.box_mygit_text {
padding: 10px 0 0 10px;
font-family: Roboto;
font-weight: 500;
font-size: 24px;
}

.box_mygit_text a {
text-decoration: none;
color:#000
}

.box_date {
padding-top: 8px;
font-family: Roboto;
font-weight: 500;
font-size: 24px;
}
.box_school {
padding-top: 5px;
}

.box_school img{
width: 100px;
}