-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab1.html
68 lines (68 loc) · 3.59 KB
/
lab1.html
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
63
64
65
66
67
68
<html>
<link rel="stylesheet" type="text/css" href="index.css"/>
<head>
<meta charset="utf-8">
<title>lab1</title>
</head>
<body style="color: aliceblue; font-family: Cambria; ">
<header style="background-color: green; height: 5%; padding-top: 10px;">
<h2 style="text-align: center; margin:0; ">Hello, Header!</h2>
</header>
<section style="background-color: blue; height: 100%; width: 40%;
margin-left: auto; margin-right: auto; padding-left: 40px; padding-right: 40px; padding-top: 20px; padding-bottom: 20px;">
<h1 style="margin:0; font-size: 2rem;">Hello, content!</h1>
<article>
<div style="width: 7rem; height: 7rem; border: 0.3rem solid #fff; float: left; border-top-left-radius: 1.5rem;
border-bottom-right-radius: 1.5rem; margin: 0 2rem 3rem 0;">
</div>
<p style="font-size: 1.3rem;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<div style="text-align: center; color:red;"><a href="content.html">www.csd.tsu.ru</a></div>
<h2 style="margin: 0;"><span style="color:red;">Here</span> is the list:</h2>
<ul>
<li>Value 1</li>
<li><span style="color:blue;">Value 2</span></li>
<li>Value 3</li>
</ul>
</article>
<article>
<article style="float: left; width: 45%;">
<h3>Here are some visual styles:</h3>
<p style="font-family: italic;"><i>Italic</i></p>
<p><b>Bold</b></p>
<p><u>Underlined</u></p>
<p><del>Line throught</del></p>
</article>
<aside style="float: right; width: 50%; ">
<table style="width: 200px; height: 200px; border: 0.1rem solid #fff; text-align: center; margin-left: auto;">
<tr>
<td rowspan="2" style="background-color:green; border: 0.1rem solid #fff;">1</td>
<td style="border: 0.1rem solid #fff;">2</td>
<td style="border: 0.1rem solid #fff;">3</td>
</tr>
<tr>
<td style="border: 0.1rem solid #fff;">4</td>
<td style="border: 0.1rem solid #fff;">5</td>
</tr>
<tr>
<td style="border: 0.1rem solid #fff;">6</td>
<td colspan="2" style="background-color:red; border: 0.1rem solid #fff;">7</td>
</tr>
</table>
<div style=" margin-left: auto; width: 2rem; padding-top: 10px;">
<img src="images.png" />
</div>
</aside>
</article>
</section>
<footer style="background-color: green; height: 5%; padding-top: 10px;">
<h2 style="text-align: center; margin:0;">Hello, Footer!</h2>
</footer>
</body>
</html>