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
140 lines (127 loc) · 5.87 KB
/
index.html
File metadata and controls
140 lines (127 loc) · 5.87 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
<!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>Curated Collection Of Amazing Videos</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>
<header>
<img src="css/illustration-learn-videos.svg">
<div class="headerText">
<h1>
A Personal Curated Collection Of My Favourite Videos
</h1>
<p>
In this blog you will find a vast collection of videos created by creators on Youtube on topics ranging from philosophy to science to everyday life issues.
</p>
</div>
</header>
<main role="main">
<section class="mainArticles">
<article>
<h2>
The tyranny of merit | Michael Sandel
</h2>
<p>
What accounts for our polarized public life, and how can we begin to heal it? Political philosopher Michael Sandel
offers a surprising answer: those who have flourished need to look in the mirror. He explores how "meritocratic hubris"
leads many to believe their success is their own doing and to look down on those who haven't made it, provoking
resentment and inflaming the divide between "winners" and "losers" in the new economy. Hear why we need to reconsider
the meaning of success and recognize the role of luck in order to create a less rancorous, more generous civic life.
</p>
<div class="videoWrapper">
<iframe width="983" height="553" src="https://www.youtube.com/embed/Qewckuxa9hw" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</article>
<article>
<h2>
Hexagons are the Bestagons | CGP Grey
</h2>
<p>
Why hexagons can be seen everywhere in nature? Why does nature prefer the hexagon over all other shapes? What is so special about a hexagon that makes it stand out from rest of the polygons? CGP Grey dives deep into this question and explains why the 'Hexagons are the Bestagons'!
</p>
<div class="videoWrapper">
<iframe width="983" height="553" src="https://www.youtube.com/embed/thOifuHs6eY" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</article>
<article>
<h2>
There's No Such Thing As Orange | exurb1a
</h2>
<p>
“We have been to the moon, we have charted the depths of the ocean and the heart of the atom, but we have a fear of
looking inward to ourselves because we sense that is where all the contradictions flow together.” – Terence McKenna
</p>
<p>
We know so much about the world around us. But, we don't know yet how matter, how chemistry end up going from the electrical signals in your brain to the experience in your mind. This is called the 'Hard Problem Of Consciousness'. And this is the greatest mystery in history!
</p>
<div class="videoWrapper">
<iframe width="983" height="553" src="https://www.youtube.com/embed/WX0xWJpr0FY" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</article>
</section>
<aside class="sideBar">
<section class="signUp">
<p>
Stay up to date with our latest collections.
</p>
<input class="emailField" type="email" placeholder="Your email address">
<br>
<button>Subscribe</button>
<br>
<p>
Your email is safe with us. We do not spam.
</p>
</section>
<article>
<h2>
What’s up with... Net neutrality, QR codes, Regulating platforms
</h2>
<p>
<ul>
<li>Net neutrality under the Democrats</li>
<li>QR Codes are doing very well in Asia and South America</li>
<li>How the German government is approaching platform regulation</li>
<li>Smartphone ups and downs</li>
</ul>
</p>
<p>
If Joe Biden becomes US president - an increasingly likely scenario - it could start another phase in the net neutrality
saga. <a target="_blank" href="https://www.telecomtv.com/content/transformation/what-s-up-with-net-neutrality-qr-codes-regulating-platforms-40066/">...Read more</a>
</p>
</article>
<article>
<h2>
Millennial Cracks YouTube Algorithm — Makes $1.8 Million In 2020 (So Far)
</h2>
<p>
As an aspiring YouTube superstar myself, I’ve been following the progress of a very young but already well-established
YouTube superstar by the name of Graham Stephan.
</p>
<p>
I first wrote about him in July 2019 in How This Real Estate Agent Made $100,000 In One Month From His YouTube Channel.
While that was certainly remarkable and time, Graham Stephan has continued to power forward throughout 2019 and 2020.
That’s why it’s time for an update. <a target="_blank" href="https://www.forbes.com/sites/jrose/2020/10/28/millennial-cracks-youtube-algorithm---makes-18-million-in-2020-so-far/">...Read more</a>
</p>
</article>
</aside>
</main>
<hr>
<footer>
All the content linked on this page is the rightful property of their owners and creators. I have simply embedded the links to the videos for educational purposes only.
</footer>
</body>
</html>