lab1 #1

Open
MorozovDanil wants to merge 7 commits from lab1 into main
8 changed files with 131 additions and 0 deletions
Showing only changes of commit 4eab9a22ad - Show all commits

14
Page3.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>3</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
контент
</body>
</html>

14
Page4.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>4</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
контент
</body>
</html>

14
Page5.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>5</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
контент
</body>
</html>

25
css/style.css Normal file
View File

@ -0,0 +1,25 @@
* {
margin: 0;
padding: 0;
}
body {
background-color: #0f0630;
font-family: Arial, Helvetica, sans-serif;
color: #f0ffff;
}
a {
text-decoration: none;
color: bisque;
}
div {
background-color: #312b46;
width: 1300px;
margin: 0 auto;
}
.menu {
margin-bottom: 50px;
}

BIN
img/manga.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

30
index.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Заголовок страницы</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="menu">
<a href="index.html">
<img src="img/manga.png" alt="ЛОГО">
</a>
</div>
<div class="main">основное расположение
<a href="manhva.html">Манхва</a>
<a href="manhya.html">Маньхуа</a>
<a href="Page3.html">3</a>
<a href="Page4.html">4</a>
<a href="Page5.html">5</a>
</div>
<div class="news">какие-то новости
</div>
</body>
</html>

20
manhva.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>1</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="menu">
<a href="index.html">
<img src="img/manga.png" alt="ЛОГО">
</a>
</div>
</body>
</html>

14
manhya.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>2</title>
<meta charset="UTF-8">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
контент
</body>
</html>