This commit is contained in:
Dzejkobik007
2022-05-13 10:21:31 +02:00
parent 0adda725c8
commit 681430b399
3 changed files with 192 additions and 0 deletions

28
ict/page/gifs.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bangers&display=swap" rel="stylesheet">
<title>Hasbulla</title>
</head>
<body>
<nav class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a style="color: red;" href="gifs.html">Gifs</a></li>
<li><a href="https://wikibio.in/hasbulla/">About</a></li>
</ul>
</nav>
<h1>Gifs</h1>
<div class="carddiv">
<img class="card" src="https://c.tenor.com/ku6cm9FzuQsAAAAC/m4kktruck-getintoitya.gif" alt="">
<img class="card" src="https://c.tenor.com/NAOXKZSLT90AAAAC/hasbulla-hasbullah.gif" alt="">
<img class="card" src="https://c.tenor.com/wdrYl8JXEdgAAAAM/hasbulla-kick.gif" alt="">
</div>
</body>
</html>

35
ict/page/index.html Normal file
View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bangers&display=swap" rel="stylesheet">
<title>Hasbulla</title>
</head>
<body>
<nav class="nav">
<ul>
<li><a style="color: red;" href="index.html">Home</a></li>
<li><a href="gifs.html">Gifs</a></li>
<li><a href="https://wikibio.in/hasbulla/">About</a></li>
</ul>
</nav>
<header>Hasbulla</header>
<h1>Gifs</h1>
<div class="carddiv">
<div class="card">
<img class="card" src="https://c.tenor.com/ku6cm9FzuQsAAAAC/m4kktruck-getintoitya.gif" alt="">
</div>
<div class="card">
<img class="card" src="https://c.tenor.com/NAOXKZSLT90AAAAC/hasbulla-hasbullah.gif" alt="">
</div>
<div class="card">
<img class="card" src="https://c.tenor.com/wdrYl8JXEdgAAAAM/hasbulla-kick.gif" alt="">
</div>
</div>
</body>
</html>

129
ict/page/style.css Normal file
View File

@@ -0,0 +1,129 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
.nav {
padding: 1%;
line-height: 150%;
width: 98%;
height: 30px;
display: block;
background-color: grey;
}
.nav *{
margin-left: 5px;
margin-right: 5px;
}
header {
width: 99%;
height: 400px;
overflow:unset;
text-align: center;
display: block;
padding-top: 15%;
background-color: lightblue;
color: white;
font-family: 'Bangers', cursive;
font-size: 1000%;
background-image: url("https://media3.giphy.com/media/vjZkgd6XlhPHSZgQNY/200.gif");
background-repeat: no-repeat;
background-size: cover;
}
h1 {
text-align: center;
}
ul {
list-style-type: none;
}
li {
display: inline;
}
li a {
text-decoration: none;
color:white;
padding-right: 5px;
}
.carddiv {
width: 100%;
padding:5px;
display: flex;
align-items: center;
justify-content: center;
}
.card {
width: 250px;
height: 300px;
display: block;
margin-left: auto;
margin-right: auto;
}
.card {
width: 250px;
height: 300px;
display: block;
}
@media screen and (max-width: 768px) {
header {
font-size: 500%;
padding-top: 30%;
height: 400px;
}
.nav {
padding-top: 5px;
text-align: center;
}
}