-
Notifications
You must be signed in to change notification settings - Fork 1
/
scoops.php
124 lines (93 loc) · 3.5 KB
/
scoops.php
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="htmlcss bootstrap menu, navbar, mega menu examples" />
<meta name="description" content="Navigation menu with submenu examples for any type of project, Bootstrap 4" />
<title>SCOOPS | BSW</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js" type="text/javascript"></script>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style type="text/css">
body{
background-image: url('images/scoops.jpg');
background-size: cover;
background-color: #a4e7f055;
}
.about-us-title{
font-size: 4rem;
}
.about-us-text{
color: white;
font-weight: medium;
font-size: 1.2rem;
margin-bottom: 20px;
}
#about-us{
margin-top: 100px;
margin-bottom: 200px;
padding-bottom: 60px;
color: white;
posiiton: absolute;
padding-top:60px;
backdrop-filter: blur(2px);
border-radius: 20px;
margin-right: 20px;
margin-left: 20px;
font-size: 1.2rem;
}
#softwares-list{
margin-top:40px;
margin-bottom:40px;
}
#softwares-list.media{
margin: 20px !important;
background-color:#000 !important;
}
#softwares-list .software-logo{
border-radius: 10px !important;
}
#footer{
}
#bg{
background: rgba(0,0,0,0.3);
padding: 40px;
border-radius: 40px;
}
</style>
</head>
<body >
<?php require 'components/header.php'; ?>
<?php require 'components/back_to_top.php'; ?>
<div id="about-us" >
<br />
<div class="container">
<div class="row justify-content-center" id="bg">
<div class="col-12">
<h1 class="about-us-title">SCOOPS</h1>
</div>
<div class="col-12 ">
<p class="about-us-text">
Students Co-operative Society or SCOOPS is a store under the aegis of BSW situated in the institute area near Wind-T and Block II. It provides all the stationary products and accessories relevant to all academic needs of students including notebooks, record books, file-folders, journal sheets, chart papers, rulers/set squares/protractors, pens, calculators as well as art & craft materials like paints, charts, etc
</p>
<div class="row">
<div class="col-12 col-md-6">
<img src="images/scoops1.svg" width="100%" style="opacity: 0.8">
</div>
<div class="col-12 col-md-6">
<img src="images/scoops2.svg" width="100%" style="opacity: 0.8">
</div>
</div>
</div>
</div>
</div>
</div>
<div>
</div>
<?php require 'components/footer.php'; ?>
<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>
</body>
</html>