-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
81 lines (77 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Team members</title>
<link href="css/teamStyleSheet.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div class="headerH1">
<img id="logoH1" src="images/logopng.png" alt="logo" > <!-- The link of the logo -->
<div id="navigationbar">
<ul>
<li> <a href="team.html">Team</a></li>
<li> <a href="gallery.html">Gallery</a></li>
<li> <a href="siteMap.html">SiteMap</a></li>
<li> <a href="quiz.html">Quiz</a></li>
<li> <a href="products.html">Product</a></li>
<li><a href="home.html">Home</a></li>
</ul>
</div>
</div>
<div class="team-members">
<h1>Our Team Members</h1>
<div class="contentH2">
<div class="box">
<div class="imageBox"><img src="images/student1.jpeg" height="200px" width="200px" alt="member1"></div> <!-- image of the member-->
<div class="content2">
<div class="details"> <!-- contains the details of the members -->
<h2>Shadim Sadiq</h2>
<p>STUDENT-1</p>
<p>IIT ID-2019445</p>
</div>
</div>
</div>
<div class="box">
<div class="imageBox"><img src="images/student2.jpeg" alt="member2" width="200px" height="200px"></div>
<div class="content2">
<div class="details">
<h2>CHARANI HASARA</h2>
<p>STUDENT-2</p>
<p>IIT ID-2019442</p>
</div>
</div>
</div>
<div class="box">
<div class="imageBox"><img src="images/student3.jpeg" alt="member3" width="200px" height="200px"></div>
<div class="content2">
<div class="details">
<h2>NETHMI SACHINDI</h2>
<p>STUDENT-3</p>
<p>IIT ID-2018467</p>
</div>
</div>
</div>
<div class="box">
<div class="imageBox"><img src="images/student4.jpg" alt="member4" width="200px" height="200px"></div>
<div class="content2">
<div class="details">
<h2>NUVIN ARACHCHI</h2>
<p>STUDENT-4</p>
<p>IIT ID-2019443</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<a id="student3anchor" href="stagesOfProduction.html">stages of film production page created by student 3</a><br>
<a id="student3anchor" href="student3cv.html">cv page created by student 3</a><br>
<a id="student3anchor" href="team.html">student details page created by student 3</a>
<p>Student3-Nethmi Sachindi Weedagama</p>
</footer>
</div>
</body>
</html>