-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (80 loc) · 3.01 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Blog Card Design</title>
<link rel="stylesheet" href="style.css">
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- FONTAWESOME -->
<link href="css/all.css" rel="stylesheet"> <!--load all styles -->
<script defer src="js/all.js"></script> <!--load all styles -->
</head>
<body>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<label id="logo">Wingardium Leviosa</label>
<ul class="menu">
<li class="item"><a class="here" href="#">Home</a></li>
<li class="item"><a href="#">About</a></li>
<li class="item"><a href="#">Articles</a></li>
<li class="item"><a href="#">Writers</a></li>
<li class="item"><a href="#">Contact</a></li>
</ul>
</nav>
<section id="main">
<div class="container">
<div id="title">
<h1>How to raise magical creatures</h1>
<p>The one true guide to feed, train, care for your precious beasts! </p>
</div>
<div class="row">
<div class="col-md-4">
<div class="single-blog">
<img src="images/wolf.png" alt="wolf">
<h3><a href="#">Feed direwolf on a budget</a></h3>
<p class="blog-text">Winter is coming. Food is short. Your wolf was born in the end of long summer as was mine. Keep your wolf alive.</p>
<div class="blog-meta">
<img src="images/snow.png" class="avatar" alt="">
<p><a href="#">Jon Snow</a></p>
<span>Nov 14, 2020</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="single-blog">
<img src="images/owl.jpg" alt="owl">
<h3><a href="#">Training snow owl at an early age</a></h3>
<p class="blog-text">It's never to early to start training your owl! Build the trusting bond at an early age is essential.</p>
<div class="blog-meta">
<img src="images/potter.png" class="avatar" alt="">
<p><a href="#">Harry Potter</a></p>
<span>Feb 5, 2040</span>
</div>
</div>
</div>
<div class="col-md-4">
<div class="single-blog">
<img src="images/snake.png" alt="snake">
<h3><a href="#">Extended lifespan of snakes</a></h3>
<p class="blog-text">During my early years of experiments, I discovered a non-conventional way to extend the lifespan of my pet snake infinitely.</p>
<div class="blog-meta">
<img src="images/voldmort.png" class="avatar" alt="">
<p><a href="#">Voldmort</a></p>
<span>Oct 31, 1760</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- BOOTSTRAP -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>