Skip to content

Commit 33c4ae6

Browse files
author
dima_los
committed
Update
1 parent 03bf926 commit 33c4ae6

File tree

5 files changed

+137
-0
lines changed

5 files changed

+137
-0
lines changed

solutions/tutorial-07/4-1.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<p>
2+
<a href="https://www.amazon.com/amz-books/discover?node=173507">
3+
Engineering
4+
</a>
5+
</p>
6+
<p>
7+
<a href="https://www.amazon.com/amz-books/discover?node=25">
8+
Science Fiction
9+
</a>
10+
</p>
11+
<p>
12+
<a href="https://www.amazon.com/amz-books/discover?node=18">
13+
Thriller
14+
</a>
15+
</p>
16+
17+
<style>
18+
a {
19+
text-decoration: none;
20+
color: black;
21+
}
22+
23+
a:hover {
24+
color: darkorange;
25+
}
26+
</style>

solutions/tutorial-07/4-2.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<p>
2+
<a href="https://en.wikipedia.org/wiki/Wikipedia">
3+
Wikipedia
4+
</a>
5+
</p>
6+
<p>
7+
<a href="https://en.wikipedia.org/wiki/Best_practice">
8+
Best practice
9+
</a>
10+
</p>
11+
<p>
12+
<a href="https://en.wikipedia.org/wiki/Frontend_and_backend">
13+
Frontend and backend
14+
</a>
15+
</p>
16+
17+
<style>
18+
a {
19+
text-decoration: none;
20+
color: royalblue;
21+
}
22+
23+
a:hover {
24+
color: cornflowerblue;
25+
text-decoration: underline;
26+
}
27+
28+
a:active {
29+
color: midnightblue;
30+
}
31+
</style>

solutions/tutorial-07/4-3.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<p>
2+
<a href="https://en.wikipedia.org/wiki/Wikipedia">
3+
Wikipedia
4+
</a>
5+
</p>
6+
<p>
7+
<a href="https://en.wikipedia.org/wiki/Best_practice">
8+
Best practice
9+
</a>
10+
</p>
11+
<p>
12+
<a href="https://en.wikipedia.org/wiki/Frontend_and_backend">
13+
Frontend and backend
14+
</a>
15+
</p>
16+
17+
<style>
18+
a {
19+
text-decoration: none;
20+
color: royalblue;
21+
}
22+
23+
a:hover {
24+
color: cornflowerblue;
25+
text-decoration: underline;
26+
}
27+
28+
a:active {
29+
color: midnightblue;
30+
font-size: 15px;
31+
}
32+
</style>

solutions/tutorial-07/4-4.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<p>
2+
Engineering
3+
</p>
4+
<p>
5+
Science Fiction
6+
</p>
7+
<p>
8+
Thriller
9+
</p>
10+
11+
<style>
12+
p {
13+
text-decoration: none;
14+
color: black;
15+
}
16+
17+
p:hover {
18+
color: darkorange;
19+
cursor: pointer;
20+
}
21+
</style>

solutions/tutorial-07/4-5.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<p>
2+
Wikipedia
3+
</p>
4+
<p>
5+
Best practice
6+
</p>
7+
<p>
8+
Frontend and backend
9+
</p>
10+
11+
<style>
12+
p {
13+
text-decoration: none;
14+
color: royalblue;
15+
}
16+
17+
p:hover {
18+
color: cornflowerblue;
19+
text-decoration: underline;
20+
cursor: pointer;
21+
}
22+
23+
p:active {
24+
color: midnightblue;
25+
font-size: 15px;
26+
}
27+
</style>

0 commit comments

Comments
 (0)