-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
132 lines (111 loc) · 4.9 KB
/
team.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
<!DOCTYPE html>
<html>
<head>
<title> Team </title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@300&d" isplay=swap rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
text-align: center;
padding: 0;
background-image: url('image1.jpg');
background-size: cover;
background-position: center;
font-family: 'Josefin Slab', serif;
}
.title {
margin-top: 100px;
color: white;
text-transform: uppercase;
transition: all 4s ease-in-out;
letter-spacing: 20px;
}
.title h1 {
font-size: 32px;
line-height: 10px;
font-weight: bold;
}
.title h2 {
font-size: 16px;
font-weight: bold;
}
input {
height: 45px;
}
.inside {
background-color: black;
font-family: 'Josefin Slab', serif;
opacity: 0.4;
margin-left: 100px;
margin-right: 100px;
margin-top: 80px;
margin-bottom: 20px;
color: white;
padding: 20px;
letter-spacing: 3px;
line-height: 25px;
border-radius: 20px;
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-lg bg-dark">
<a class="navbar-brand" href="index.html"><img src="logo.jpeg" alt="" width="50px" style="margin-left: 10px;"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about_us.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="team.html">Team</a>
</li>
</ul>
</div>
</nav>
<div class="title">
<h1>Our Team</h1>
<h2>Audithaholic</h2>
</div>
<div class="inside">
<p>
194174B Uyanage B.C.<br>
<p>
<p>194068E Jayarathna H.M.R.C. <br>
<p>
<p>194070D Jayasinghe J.M.S.S <br>
<p>
<p>194128N Ranawake R.A.C.H.N <br>
<p>
<p>194200M Samarasinghe R. T .<br>
<p>
<p>195013p Dilshani R.P.S <br>
<p>
<p>195026H Jayasekara A.M.N.P <br>
<p>
<p>195069P Ranaweera R.M. <br>
<p>
<p>195091B Udani A.A.I <br>
<p>
<p>195092E Udayangani H.M.I <br>
<p>
</p>
</p>
</p>
</div>
<div class="footer bg-dark">
<p>© Copyright 2021 Auditaholic</p>
</div>
</body>
</html>