-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 3.69 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
<!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">
<title>Beesly's Friends</title>
<link rel="stylesheet" href="designs.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<a href="#default" class="logo">Beesly's Friends</a>
<div class="header-right">
<a class="active" href="index.html">Home</a>
<a href="ourStory.html">Our Story</a>
<a href="gallery.html">Friends</a>
<a href="donate.html">Donate</a>
</div>
</header>
<main>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>Love at first sniff!</h2>
<h5>Adopt-a-pet, June 19, 2021</h5>
<img src="imgs/event.jpeg" alt="Adopt-a-pet event" id="event">
<h4>Midland's Saturday pet event!</h4>
<p>This Saturday Midland hosted it's 5th annual "Adopt-A-Pet" event. Non-profits, local businesses, familys and vendors got together for great foodm good times and forever memories.</p>
</div>
<div class="card">
<h2>Puppy Biting?</h2>
<h5>Title description, Sep 2, 2017</h5>
<iframe width="560" height="315" src="https://www.youtube.com/embed/068K5Zlph9U" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h4>Here is a quick tutorial on how to train your puppy!</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas vitae scel<span id="dots">...</span><span id="more">erisque enim ligula venenatis dolor. Maecenas nisl est, ultrices nec congue eget, auctor vitae massa. Fusce luctus vestibulum augue ut aliquet. Nunc sagittis dictum nisi, sed ullamcorper ipsum dignissim ac. In at libero sed nunc venenatis imperdiet sed ornare turpis. Donec vitae dui eget tellus gravida venenatis. Integer fringilla congue eros non fermentum. Sed dapibus pulvinar nibh tempor porta.</span></p>
<button onclick="myFunction()" id="myBtn">Read more</button>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<h2>About Me</h2>
<a target="_blank" href="imgs/birthday.jpeg">
<img src="imgs/birthday.jpeg" alt="Cat with a birthday hat" style="width:150px">
</a>
<p>I am the little sister to three adorable big sisters...</p>
</div>
<div class="card">
<h3>Popular Post</h3>
<div class="fakeimg">Image</div><br>
<div class="fakeimg">Image</div><br>
<div class="fakeimg">Image</div>
</div>
<div class="card">
<h3>Follow Us</h3>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
</div>
</div>
</main>
<footer>
<br>
Copyright © 2021 Beesly's Friends
<br>
<a href="mailto:[email protected]">[email protected]</a>
</footer>
</body>
</html>