init
This commit is contained in:
197
gif.html
Normal file
197
gif.html
Normal file
@@ -0,0 +1,197 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sk">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Books</title>
|
||||
<meta name="description" content="Books">
|
||||
<meta name="keywords" content="books, booktok, bookstagram, author,
|
||||
romance, fantasy, sci-fi, characters, love ">
|
||||
<!-- namapovanie css -->
|
||||
<link rel="stylesheet" href="h1css.css">
|
||||
<link rel="shortcut icon" href="icon.jpg" type="image/x-icon">
|
||||
<meta name="viewport" content="width=device-width,
|
||||
initial-scale=1.0, user-scalable=yes">
|
||||
|
||||
</head>
|
||||
<body style="background-color: rgb(83, 129, 83);">
|
||||
<style>
|
||||
body {margin:0;font-family:Arial}
|
||||
|
||||
.topnav {
|
||||
overflow: hidden;
|
||||
background-color: rgb(9, 56, 27);
|
||||
}
|
||||
|
||||
.topnav a {
|
||||
float: left;
|
||||
display: block;
|
||||
color: rgb(210, 227, 200);
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.active {
|
||||
background-color: rgb(9, 56, 27);
|
||||
color: rgb(210, 227, 200);
|
||||
}
|
||||
|
||||
.topnav .icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dropdown .dropbtn {
|
||||
font-size: 17px;
|
||||
border: none;
|
||||
outline: none;
|
||||
color: rgb(210, 227, 200);
|
||||
padding: 14px 16px;
|
||||
background-color: rgb(9, 56, 27);
|
||||
font-family: inherit;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: rgb(210, 227, 200);
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgb(9, 56, 27);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.dropdown-content a {
|
||||
float: none;
|
||||
color: rgb(9, 56, 27);
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.topnav a:hover, .dropdown:hover .dropbtn {
|
||||
background-color: rgb(210, 227, 200);
|
||||
color: rgb(9, 56, 27);
|
||||
}
|
||||
|
||||
.dropdown-content a:hover {
|
||||
background-color: rgb(9, 56, 27);
|
||||
color: rgb(210, 227, 200);
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-content {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.topnav a:not(:first-child), .dropdown .dropbtn {
|
||||
display: none;
|
||||
}
|
||||
.topnav a.icon {
|
||||
float: right;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.topnav.responsive {position: relative;}
|
||||
.topnav.responsive .icon {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
.topnav.responsive a {
|
||||
float: none;
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
.topnav.responsive .dropdown {float: none;}
|
||||
.topnav.responsive .dropdown-content {position: relative;}
|
||||
.topnav.responsive .dropdown .dropbtn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<div class="topnav" id="myTopnav">
|
||||
<a href="home.html" class="active">Home</a>
|
||||
<a href="aboutus.html">About us</a>
|
||||
<a href="topbooks.html">TOP books 2023</a>
|
||||
<a href="formular.html">Rate us!</a>
|
||||
<div class="dropdown">
|
||||
<button class="dropbtn">Genre
|
||||
<i class="fa fa-caret-down"></i>
|
||||
</button>
|
||||
<div class="dropdown-content">
|
||||
<a href="romance.html">romance</a>
|
||||
<a href="fantasy.html">fantasy</a>
|
||||
<a href="scifi.html">sci-fi</a>
|
||||
<a href="horror.html">horror</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="dropdown">
|
||||
<button class="dropbtn">Authors
|
||||
<i class="fa fa-caret-down"></i>
|
||||
</button>
|
||||
<div class="dropdown-content">
|
||||
<a href="anahuang.html">Ana Huang</a>
|
||||
<a href="colleenhooveer.html">Colleen Hooveer</a>
|
||||
<a href="ellekennedy.html">Elle Kennedy</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function myFunction() {
|
||||
var x = document.getElementById("myTopnav");
|
||||
if (x.className === "topnav") {
|
||||
x.className += " responsive";
|
||||
} else {
|
||||
x.className = "topnav";
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h3 style="font-family: Times new Rowan; font-size:8vw">GIFs</h3>
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<article>
|
||||
<br><br><br><br>https://tenor.com/sk/view/book-bookmeme-reader-gif-12922468
|
||||
<div class="tenor-gif-embed" data-postid="15885952942087025629" data-share-method="host" data-aspect-ratio="1" data-width="100%"><a href="https://tenor.com/view/books-book-reading-booklover-bookstagram-gif-15885952942087025629">Books Reading GIF</a>from <a href="https://tenor.com/search/books-gifs">Books GIFs</a></div> <script type="text/javascript" async src="https://tenor.com/embed.js"></script>
|
||||
<div class="tenor-gif-embed" data-postid="12922468" data-share-method="host" data-aspect-ratio="1.3587" data-width="100%"><a href="https://tenor.com/view/book-bookmeme-reader-gif-12922468">Book Bookmeme GIF</a>from <a href="https://tenor.com/search/book-gifs">Book GIFs</a></div> <script type="text/javascript" async src="https://tenor.com/embed.js"></script>
|
||||
<div class="tenor-gif-embed" data-postid="10674954" data-share-method="host" data-aspect-ratio="1.36" data-width="100%"><a href="https://tenor.com/view/spongebob-thinking-reading-book-work-glasses-gif-10674954">Spongebob Thinking GIF</a>from <a href="https://tenor.com/search/spongebob-gifs">Spongebob GIFs</a></div> <script type="text/javascript" async src="https://tenor.com/embed.js"></script>
|
||||
<div class="tenor-gif-embed" data-postid="12033367" data-share-method="host" data-aspect-ratio="0.73494" data-width="100%"><a href="https://tenor.com/view/read-book-study-funny-standing-on-one-foot-gif-12033367">看书 学习 搞笑 金鸡独立 GIF</a>from <a href="https://tenor.com/search/read+book-gifs">Read Book GIFs</a></div> <script type="text/javascript" async src="https://tenor.com/embed.js"></script>
|
||||
<div class="tenor-gif-embed" data-postid="7530000" data-share-method="host" data-aspect-ratio="1.785" data-width="100%"><a href="https://tenor.com/view/frantic-studying-reading-exams-exams-week-gif-7530000">Frantic Reading GIF</a>from <a href="https://tenor.com/search/frantic-gifs">Frantic GIFs</a></div> <script type="text/javascript" async src="https://tenor.com/embed.js"></script>
|
||||
<a href="http://changbin.borec.cz/Zadanie/cat.gif"
|
||||
download="cat.gif">stiahni gif</a><hr>
|
||||
|
||||
<br><br><br><br>
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<footer><br>
|
||||
<h4>#booktok made me read it</h4>
|
||||
</footer>
|
||||
|
Reference in New Issue
Block a user