Skip to content

Commit 6c7c537

Browse files
author
dima_los
committed
Update
1 parent a73d05f commit 6c7c537

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

solutions/tutorial-06/6-7.html

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<p class="logo">
2+
<img src="images/logo-1.png" class="logo-image">
3+
YouTube
4+
</p>
5+
<img src="images/img-1.jpg" class="video-thumbnail">
6+
<p class="video-title">
7+
Deadpool & Wolverine | Final Trailer | In Theaters July 26
8+
</p>
9+
<p class="channel-name">
10+
Marvel Entertainment
11+
</p>
12+
<p class="video-stats">
13+
7.1M views, 10 days ago
14+
</p>
15+
16+
<style>
17+
.video-thumbnail {
18+
width: 345px;
19+
}
20+
21+
.video-title {
22+
width: 345px;
23+
font-size: 18px;
24+
font-weight: bold;
25+
}
26+
27+
.channel-name {
28+
color: grey;
29+
}
30+
31+
.video-stats {
32+
color: grey;
33+
}
34+
35+
.logo-image {
36+
width: 50px;
37+
}
38+
39+
.logo {
40+
font-size: 45px;
41+
font-weight: bold;
42+
}
43+
</style>

solutions/tutorial-06/6-8.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<p class="logo">
2+
<img src="images/logo-2.png" class="logo-image">
3+
Airbnb
4+
</p>
5+
<img src="images/img-2.jpg" class="apartment-preview">
6+
<p class="apartment-title">
7+
Villa in Canggu,
8+
<img src="images/star.svg" class="apartment-star">
9+
5.0 (72)
10+
</p>
11+
<p class="apartment-description">
12+
Impressive brand new 4BR villa
13+
<br>
14+
Dec 11-15
15+
</p>
16+
<p class="apartment-price">
17+
$657 night
18+
</p>
19+
<style>
20+
.apartment-preview {
21+
width: 300px;
22+
}
23+
24+
.apartment-title {
25+
font-weight: bold;
26+
}
27+
28+
.apartment-star {
29+
width: 12px;
30+
}
31+
32+
.apartment-description {
33+
color: grey;
34+
line-height: 22px;
35+
text-transform: capitalize;
36+
}
37+
38+
.apartment-price {
39+
font-weight: bold;
40+
}
41+
42+
.logo {
43+
font-size: 45px;
44+
color: lightcoral;
45+
}
46+
47+
.logo-image {
48+
width: 33px;
49+
}
50+
</style>

0 commit comments

Comments
 (0)