-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task10.html
57 lines (55 loc) · 1.64 KB
/
Task10.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.total{
display: grid;
grid-template-columns: auto auto;
margin:10px;
background-color: rgb(211, 211, 86);
height: 400px;
}
#design{
background-color: aliceblue;
padding:3px;
border-right: 10px solid black;
margin:10px;
width:60%;
}
.first{
margin-top:42px;
}
#design a{
text-decoration: none;
}
.dashedline{
border:1px dashed black;
}
.second{
color:rgb(135, 44, 135);
}
</style>
</head>
<body>
<h2>Task 5</h2>
<div class="total">
<div class="first">
<div id="design"><a href="#">Home page</a></div>
<div id="design"><a href="#">Musing</a></div>
<div id="design"><a href="#">My town</a></div>
<div id="design"><a href="#">Links</a></div>
</div>
<div class="second">
<h1>My first styled page</h1>
<p>Welcome to my styled page!</p>
<p>It lacks images,but at least it has style. And it <br> has links, even if they don't go anywhere....</p>
<p>There should be more here, but I don't know <br> what yet.</p>
<hr class="dashedline">
<p>Made 8 september 2023 <br> by myself.</p>
</div>
</div>
</body>
</html>