forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (146 loc) · 5.7 KB
/
index.html
File metadata and controls
146 lines (146 loc) · 5.7 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<div class="logo">
<img src="./logo.png" alt="logo" />
</div>
<div class="title">
<h1>My Favourite YouTube Video Channels</h1>
</div>
</header>
<main>
<section class="start">
<div class="pagesImage">
<img src="./diy.png" alt="do it yourself image" />
</div>
<h2 class="title">How it all started?</h2>
<div class="paras">
<p>
As I have mentioned at numerous occasions that I enjoy creative
work. I am very passionate about cars and DIY projects. I really
enjoy watching YouTube channels about fixing damaged cars or DIY
building projects.
</p>
</div>
<div class="paras">
<p>
I have been in love with cars since childhood. I have recently
developed interest in cooking and I tend to be creative with it as
well. I have previously fixed and painted my car, I repainted and
revamped my parent's place, before we sold it. I trust my instincts
and do not hesitate to give it a go.
</p>
</div>
<div class="paras"></div>
<p>
These channels have really helped me gain knowledge about small
details with such projects. Someday, I wish to buy a house or car
which I can fix on my own and turn it into a modern home or daily
driver. I follow many YouTube channels related to the topics above but
I will be sharing my top three below.
</p>
</section>
<section>
<article>
<div class="pagesImage">
<img src="./goonzquad.png" alt="goonzquad logo" />
</div>
<h3 class="title">Goonzquad</h3>
<div class="paras">
<p>
My favourite YouTube channel is Goonzquad. Currently, they have
over 2.3 million subscribers. They have a new progress video every
two days. They recently bought a house at the top of a hill and
refurbished it in almost eighty episodes. They started with Jeep
Rubicons and within two years, they have also repaired and own a
Lamborghini Huracan,Ferrari 458 Spider, a Hellcat etc... They
carry out all repairs in their backyard. To visit their YouTube
channel, click
<a
href="https://www.youtube.com/c/goonzquad/featured"
target="_blank"
>here</a
>.
</p>
</div>
</article>
<article>
<div class="pagesImage">
<img src="./tavarish.png" alt="tavarish logo" />
</div>
<h3 class="title">Tavarish</h3>
<div class="paras">
<p>
My second most favourite YouTube channel is Tavarish. Currently,
he has over 1.8 million subscribers but he has many super and
hypercar projects in his garage. The difference is that he has
more mechanical expertise and adds a lot of humour to his videos.
Tavarish's show is not only interesting but funny as well. His
slogan is "I am the warranty". He and two fellow YouTubers had
started a show called Car Trek. It is very similar to Top Gear. In
its recent fourth series, They all had to buy Ferraris for the
price of a Toyota and test them to their limits. If you wish to
visit Tavarish's YouTube channel, click
<a href="https://www.youtube.com/user/tavarish" target="_blank"
>here</a
>.
</p>
</div>
</article>
<article>
<div class="pagesImage">
<img
src="./lifeUncontained.png"
alt="Life Uncontained couple picture"
/>
</div>
<h3 class="title">Life Uncontained</h3>
<div class="paras">
<p>
My third most favourite YouTube channel is Life Uncontained.
Currently, they have over 1.1 million subscribers. They are a
couple who decided to quit their jobs, sell their house and move
to Texas from Florida, where they are building their own shipping
container home. It is very interesting to see the challenges they
face while living in nature and building their shipping container
home from scratch. Two years down, they are expecting their second
baby and about to start painting interior walls in their home. To
access their YouTube channel, click
<a
href="https://www.youtube.com/channel/UC-l69It3hxAY3tkBH_utLNQ"
target="_blank"
>here</a
>.
</p>
</div>
</article>
</section>
</main>
<footer>
<div class="copyRight">
<p>Created by Frepistani. © 2021</p>
</div>
<div class="contact">
<p>GitHub: @humailhasankhan</p>
</div>
</footer>
</body>
</html>