Skip to content
Open
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 avatar.jpg
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 fonts/BitcountGridDouble-Regular.ttf
Binary file not shown.
Binary file added icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions schedule.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/jpeg" href="./icon.jpg" />
<title>Мой дневник</title>
</head>
<body>
<header>
<h1>Мой дневник</h1>
<img src="./avatar.jpg" alt="Моя аватарка" class="avatar">
<link rel="stylesheet" href="./stylesForSchedule.css" />

</header>

<section class="schedule">
<div class="monday">
<h2>Понедельник</h2>
<ul>
<li>09:00 - 10:40: Физкультура</li>
<li>10:50 - 12:40: Русская лит-ра</li>
<li>13:00 - 16:30: География</li>
</ul>
</div>

<div class="tuesday">
<h2>Вторник</h2>
<ul>
<li>09:00 - 10:40: Биология</li>
<li>10:50 - 12:40: Русский яз.</li>
<li>13:00 - 16:30: Математика </li>
</ul>
</div>

<div class="wednesday">
<h2>Среда</h2>
<ul>
<li>09:00 - 10:40: История Беларуси в контексте Всем. Ист.</li>
<li>10:50 - 12:40: Математика</li>
<li>13:00 - 16:30: Белорусский яз. </li>
</ul>
</div>

<div class="thursday">
<h2>Четверг</h2>
<ul>
<li>09:00 - 10:40: История Беларуси в контексте Всем. Ист.</li>
<li>10:50 - 12:40: Математика</li>
<li>13:00 - 16:30: Химия</li>
</ul>
</div>

<div class="friday">
<h2>Пятница</h2>
<ul>
<li>09:00 - 10:40: Математика</li>
<li>10:50 - 12:40: Физика</li>
<li>13:00 - 16:30: Белорусская лит-ра </li>
</ul>
</div>

<div class="saturday">
<h2>Суббота</h2>
<ul>
<li>09:00 - 10:40: Белорусская лит-ра</li>
<li>10:50 - 12:40: Белорусский яз.</li>
<li>13:00 - 16:30: Информатика </li>
</ul>
</div>

<div class="sunday">
<h2>Воскресенье</h2>
<ul>
<li>ВЫХОДНОООООЙ</li>

</ul>
</div>
</section>

<section class="notes">
<h2>Заметочки-с</h2>
<textarea placeholder="Введите ваши заметки здесь..."></textarea>
</section>
</body>
</html>
76 changes: 76 additions & 0 deletions stylesForSchedule.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/* I know this won't work for ru language :) */
@font-face {
font-family: 'Bitcount';
src: url(./fonts/BitcountGridDouble-Regular.ttf) format('truetype');
font-weight: 400;
font-style: normal;
}

body {
font-family: 'Bitcount', sans-serif;
max-width: 800px;
padding: 20px;
margin: 0 auto;
background-color: #f5f5f5;
}
h1,h2,div{
font-family: 'Bitcount', sans-serif;
font-weight: normal;
}
header {
text-align: center;
margin-bottom: 30px;
}

.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
border: 4px solid #333;
margin-top: 15px;
}

.monday {
background-color: #ffe6e6;
}
.tuesday {
background-color: #e6f3ff;
}
.wednesday {
background-color: #f0e6ff;
}
.thursday {
background-color: #e6ffe6;
}
.friday {
background-color: #fffae6;
}
.saturday {
background-color: #ffe6f3;
}
.sunday {
background-color: #e6ffe6;
}

h2 {
margin-top: 5px;
color: #333;
}

ul {
padding-left: 20px;
}

li {
margin-bottom: 5px;
}

textarea {
width: 100%;
height: 150px;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 16px;
padding: 12px;
}