-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 862 Bytes
/
index.html
File metadata and controls
37 lines (36 loc) · 862 Bytes
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Документ</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #949090;
color: #333;
margin: 0;
padding: 20px;
}
h1 {
color: #247d07;
font-size: 20px;
}
h2 {
color: #34495e;
}
p {
font-size: 16px;
}
</style>
</head>
<body>
<!-- main-->
<h1>Привет, мир!</h1>
<h2>Добро пожаловать на мой сайт</h2>
<p>Это простой HTML-документ.</p>
<script>
console.log("Привет из JavaScript!");
</script>
</body>
</html>