-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgfposts.html
More file actions
77 lines (69 loc) · 2.06 KB
/
Copy pathgfposts.html
File metadata and controls
77 lines (69 loc) · 2.06 KB
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
<!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>greenify</title>
<link rel="stylesheet" href="gfstyle.css">
<style>
.about1{
display: flex;
flex-direction: column;
width: 25%;
height: 75%;
margin-left:25% ;
}
</style>
</head>
<body>
<div class="spe">
<div class="links">
<a href="index.html"><img src="gflogo.png" alt="" class="log"></a>
<a href="index.html">Home</a>
<a href="gfposts.html">Posts</a>
<a href="gfshopping.html">Shopping</a>
<a href="gfservices.html">Services</a>
<a href="campaign.html">Campaigns</a>
<a href="gfrewards.html">Rewards</a>
<a href="#">Other</a>
<a href="login_g.html">Login/Signup</a>
</div>
</div>
<div class="hot">
<div class="about1">
<div class="arnav" >
<img src="post1.jpg" alt="" width="20%" ><br>
<a href="" id="like">Like</a>
Hi Guys ! I'm Arnav Goyal.I joined the greenify
community recently.Here I got huge support from
the audience which promoted me to make more
blogs. #gogreen #greenifyindia
</div>
<div class="arnav">
<img src="post2.jpg" alt="" width="20%">
Greenify is the best platform to share our love
for plants. #loveforplants #greenifyindia
</div>
<div class="arnav">
<img src="post3.jpg" alt="" width="20%">
Have you liked my garden?? I have designed it
with the help of greenify:)
</div>
</div>
</div>
<footer class="spec1">
<a href="#">Copyright </a>
<a href="#">Terms&Condition </a>
<a href="#">FAQ </a>
<a href="#">Contact_Us </a>
</footer>
<script>
const like=document.getElementById("like");
like.onclick = colorchange;
function colorchange(){
like.style.color="red";
}
</script>
</body>
</html>