-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (54 loc) · 2.09 KB
/
Copy pathabout.html
File metadata and controls
55 lines (54 loc) · 2.09 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>
<meta charset="utf-8">
<meta name="auther" content="Akanksha Sharma">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" media="mediatype and|not|only (media feature)" href="mystylesheet.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Cabin:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster|lora" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
#heading{
color: #fd0001;
font-family: 'Cabin';
font-size: 40pt;
}
p{
font-family: 'Libre Franklin','sans-serif';
font-size: 16pt;
padding-top: 20px;
padding-left: 20px;
}
.readbtn1{
font-family: 'lora';
font-size: 20pt;
border-radius: 10px 10px 10px 10px;
width:150px;
height:50px;
background-color: #ff9999;
margin-left: 20px;
}
</style>
</head>
<body>
<!-- Div for home about us section -->
<div class="container-fluid">
<center><h1 id="heading">About Happy Periods</h1></center>
<div class="row">
<div class="col-sm-7">
<p>Happy Periods is an initiative to create Period Ready Schools and villages in India. </p>
<p>We conduct sessions on mensturation in schools and communities with girls of age 12-15, their mothers,teachers and Asha workers...</p>
<button type="button" class="readbtn1">Read More</button>
</div>
<div class="col-sm-5">
<img src="Images\about.png" alt="hp" >
</div>
</div>
</div>
</body>
</html>