-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.63 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Сайт Гусева Олега</title>
<link rel="stylesheet" href="./styleCommon.css">
<link rel="stylesheet" href="./styleMainPage.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"
integrity="sha384-tViUnnbYAV00FLIhhi3v/dWt3Jxw4gZQcNoSCxCIFNJVCx7/D55/wXsrNIRANwdD" crossorigin="anonymous">
</head>
<body class="light-theme">
<header>
<div class="profile">
<a class="name" href="./index.html">Гусев Олег</a>
<button id="themeToggle">🌙</button>
</div>
<h2 class="introduction">Проходи, не задерживайся:)</h2>
<nav>
<ul class="navigation" id="header">
</ul>
</nav>
</header>
<main class="information">
<section class="about_me">
<img class="photo" src="./images/161e6bf8-15a9-40a0-bbb0-31f10a3e79e7.jpg" alt="Это я" width="300"
height="360">
<p>
Привет! 👋
</p>
<p>Я Гусев Олег, студент 1-го курса факультета информационных технологий.</p>
<p>Программирование я
полюбил
ещё
в 10 классе, когда понял, что это не так сложно, как кажется, и поэтому выбрал поступить в ИИТ.
</p>
<p>Сейчас вы видите мой проект по курсу — «Введение в направление». Проще говоря, это мой первый опыт в
создании сайта. Я очень благодарен преподавателю за возможность преодолеть страх и убедиться, что делать
сайты не так трудно. Надеюсь вам понравится!❤</p>
</section>
<aside>
<h2 class="myQuotes" style="display: inline;">Мои любимые цитаты</h2>
<span>🧐</span>
<div class="quotes">
</div>
</aside>
</main>
<footer>
<nav>
<ul class="navigation" id="footer">
</ul>
</nav>
</footer>
</body>
<script src="./script.js"></script>
<script src="./quotes.js"></script>
<script src="./lightOrDark.js"></script>
</html>