-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
55 lines (53 loc) · 2.08 KB
/
blogs.html
File metadata and controls
55 lines (53 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<title>blogs</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<style type="text/css">
.container-fluid{
height:400px;
width:100%;
background-color:#ebebe0;
margin-top: 20%;
margin-left: 3%;
margin-right: 3%
margin-bottom:10%;
}
img{
height: 400px;
width: 520px;
border:4;
border-color: black;
border-style: solid;
transition:3s all ease;
}
img:hover{
transform:scale(1.2);
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-4">
<div style="overflow: hidden; border-width: 15px;">
<a href="blog1.html"><img src="exercise.jpg" alt="common exercise errors" title="COMMON EXERCISE ERRORS"></a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-4">
<div style="overflow: hidden; border-width: 15px;">
<a href="blog2.html"><img src="How-to-keep-liver-healthy.jpg" alt="HOW TO KEEP LIVER HEALTHY" title="HOW TO KEEP LIVER HEALTHY"/></a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-4">
<div style="overflow: hidden; border-width: 15px;">
<a href="blog3.html"><img src="Depression-Symptoms-and-Signs.jpg" alt="SIGNS AND SYMPTOMS OF DEPRESSIONS" title="SIGNS AND SYMPTOMS OF DEPRESSIONS"></a>
</div>
</div>
</div>
</div>
</body>
</html>