forked from kinjalpadalikar/practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
117 lines (110 loc) · 3.35 KB
/
Copy pathpage2.html
File metadata and controls
117 lines (110 loc) · 3.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Acintya Intranet</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<style type="text/css">
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
height: 660px;
margin: 0 auto;
</style>
<body>
<div class="container-fluid" style="margin: 0 auto; padding:0;">
<header style="background-image: url(../acintya3.png); background-repeat: no-repeat; width: 100%; height: 100%">
<br>
<br>
<h1 style="text-align: center; height: 100%; font-weight: bold; padding-left:7%; color:#253648;">Acintya Solutions Pvt. Ltd.</h1>
</header>
<h2 style="text-align: center; font-weight: bold;font-size: 2em; color:#253648;background-color: #a8cf45; margin: 0 auto">This is our intranet website for all our employees.</h2>
<nav class="navbar navbar-inverse nav-bar-fixed-top" style="background-color: #253648">
<div class="container-fluid";>
<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>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li>
<a href="intranet.html">Home</a>
</li>
<li>
<a href="page1.html">Page 1</a>
</li>
<li class="active"><a href="#">Page 2</a>
</li>
<li><a href="page3.html">Page 3</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<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 class="section" style="margin: 0 auto; font-weight: bold; background-color:#a8cf45; color:#253648;margin: 0 auto">
<h4>Holiday Calender</h4>
<div class="month">
<ul>
<li class="prev">❮</li>
<li class="next">❯</li>
<li style="color:#253648">
August<br>
<span style="font-size:18px; color:#253648">2017</span>
</li>
</ul>
</div>
<ul class="weekdays" style="color:#253648">
<li>Mo</li>
<li>Tu</li>
<li>We</li>
<li>Th</li>
<li>Fr</li>
<li>Sa</li>
<li>Su</li>
</ul>
<ul class="days" style="color:#253648">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li><span class="active">10</span></li>
<li>12</li>
<li>13</li>
<li>14</li>
<li style="background-color: #a8cf45" abbr title="Independence Day">15</abbr></li>
<li>16</li>
<li>17</li>
<li>18</li>
<li>19</li>
<li>20</li>
<li>21</li>
<li>22</li>
<li style="background-color: #a8cf45" abbr title="XYZ Day">23</li>
<li>24</li>
<li>25</li>
<li>26</li>
<li>27</li>
<li>28</li>
<li>29</li>
<li>30</li>
<li>31</li>
</ul>
</div>
</body>
</html>