-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
176 lines (142 loc) · 4.91 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>controlbudget</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap/3.3.7/css/bootstrap-theme.min.css" >
<script src="js/jquery-3.5.1.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="js/bootstrap.min.js"></script>
<style>
.navbar-inverse{
border-radius: 0px;
}
.row_style{
margin-top: 10px;
}
.panel-heading{
text-align: center;
}
.content{
}
.panel{
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #282828;
color:#A0A0A0;
text-align: center;
padding: 10px 10px 10px 10px ;
font-size: 16px;
}
#banner_image{
min-height: 800px;
padding-top: 75px;
padding-bottom: 50px;
text-align: center;
color: #f8f8f8;
background-image: url(money.jpg);
max-width: 100%;
height:auto;
background-repeat: no-repeat;
background-size: cover;
background-position:center ;
background-attachment: fixed;
}
#inner-banner-image{
padding-top: 6%;
padding-right: 5px;
overflow:hidden;
padding-left: 10px;
width:80%;
max-width: 100%;
margin:auto;
}
#banner_content{
position: center;
padding-top: 6%;
padding-bottom: 5%;
overflow:hidden;
margin-bottom: 2%;
margin:auto;
background-color: rgba(0, 0, 0, 0.7);
max-width: 1000px;
color: wheat;
}
.button{
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
padding: 10px 16px;
font-size: 18px;
border-radius: 60px;
text-decoration:none;
}
#button1{
padding-bottom: 10px;
}
.btn-primary{
border-radius: 60px;
padding:12px;
font-size:18px;
}
</style>
</head>
<body>
<div>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand"><span class="glyphicon glyphicon-thumbs-up"></span>controlbudget</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="aboutme.html">
<span class="glyphicon glyphicon-info-sign"></span>
About-me
</a>
</li>
<li>
<a href="signup.html">
<span class="glyphicon glyphicon-user"></span> Sign-up
</a>
</li>
<li>
<a href="login.html"><span class="glyphicon glyphicon-log-in"></span>
Login</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div id="banner_image" class="col-xs-12">
<div id="inner-banner-image">
<div id="banner_content">
<h3 id="button1">we can help you control your budget</h3>
<p><a href="signup.html" class="btn btn-primary ">
start today</a></p>
</div>
</div>
</div>
<div class="footer">
<p>copyright@jayanthgandham/all rights reserved/contact us:9704647011</p>
</div>
</body>
</html>