Skip to content

Instantly share code, notes, and snippets.

@MelulekiDube
Created June 28, 2019 20:39
Show Gist options
  • Save MelulekiDube/5598338a8dfcc227a53488243167796e to your computer and use it in GitHub Desktop.
Save MelulekiDube/5598338a8dfcc227a53488243167796e to your computer and use it in GitHub Desktop.
QXarQE
<!doctype html>
<html lang="en">
<head>
<link href="css/style.css">
</head>
<body>
<h1>My Favourite Things</h1>
<p>This page is a list of my favourite stuff!!!</p>
<h2>Movies</h2>
<ol>
<li> <a href="https://www.imdb.com/title/tt7401588/" target="_blank">Instant Family</a>
<li> <a href="https://www.imdb.com/title/tt1431045/" target="_blank">DeadPool</a>
<li> <a href="https://www.imdb.com/title/tt6182908/" target="_blank">SmallFoot</a>
<li> <a href="https://www.imdb.com/title/tt1001526/" target="_blank">Megamind</a>
<li> <a href="https://www.imdb.com/title/tt0337592/?ref_=nv_sr_1?ref_=nv_sr_1" target="_blank">Love Don't Cost a Thing</a>
</ol>
<h2>Music</h2>
<p> Failed to lists the songs in an order </p>
<ul>
<li> <a href="https://www.youtube.com/watch?v=JLf9q36UsBk" target="_blank">Out of the Woods - Taylor Swift</a>
<li> <a href="https://www.youtube.com/watch?v=lrzjqNBzeS4" target="_blank">Big Dreams - Meek Mill </a>
<li> <a href="https://www.youtube.com/watch?v=D4hAVemuQXY" target="_blank">Sing for moment - Eminem</a>
<li> <a href="https://www.youtube.com/watch?v=-kc74jq2QHk" target="_blank">God - Scarface </a>
<li> <a href="https://www.youtube.com/watch?v=w1oM3kQpXRo" target="_blank">Begin Again - Taylor Swift </a>
</ul>
<h2>Food</h2>
<ol>
<li> Fries
<li> Mashed Potatoes
<li> Pizza
<li> Burger
<li> Chicken
</ol>
<h2>Books</h2>
<ul>
<li> <a href="https://books.google.co.za/books/about/Broken_April.html?id=AMisFeqnWQ4C&printsec=frontcover&source=kp_read_button&redir_esc=y#v=onepage&q&f=false" targer="_blank">Broken April</a> By Ismail Kadare
<li> <a href="https://books.google.com/books/about/ANIMAL_FARM.html?id=o6eSDwAAQBAJ&printsec=frontcover&source=kp_read_button" target="_blank">Animal Farm</a> By George Orwell
<li> <a href="https://books.google.com/books/about/Around_the_World_in_Eighty_Days.html?id=sd06RZq4mN4C&printsec=frontcover&source=kp_read_button" target="_blank">Around the World in Eighty Days</a> By Jules Verne
</ul>
</body>
</html>
body{
background-color: #002b36;
color: #93a1a1;
}
h1{
color: #cb4b16;
}
h2{
color: #cb4b16;
font-family: 'Times New Roman';
line-height: 10px;
}
p{
color: #859900 ;
}
a{
text-decoration: none;
color: #2aa198;
}
a:visited{
color: #268bd2 ;
}
li:hover{
background-color: #fdf6e3;
color: #586e75;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment