-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteam.html
More file actions
110 lines (100 loc) · 4.87 KB
/
team.html
File metadata and controls
110 lines (100 loc) · 4.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/cursor.css"/>
<link rel="stylesheet" href="css/team.css"/>
<!-- Fonts & Logos -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap">
<link rel="icon" type="image/svg" href="resources/logos/favicon.svg">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,0,0">
</head>
<body>
<!-- Navigation bar of the Document -->
<nav>
<ul id="navbar">
<li id="logo" style="float:left"><a href="index.html"><img src="resources/logos/logo.svg" alt="logo"></a></li>
<li><a href="home.html"><span class="material-symbols-rounded">home</span><span class="nav__text">Home</span></a></li>
<li><a href="gallery.html"><span class="material-symbols-rounded">movie</span><span class="nav__text">Gallery</span></a></li>
<li><a href="shop.html"><span class="material-symbols-rounded">shop</span><span class="nav__text">Shop</span></a></li>
<li><a href="profile.html"><span class="material-symbols-rounded">account_circle</span><span class="nav__text">Profile</span></a></li>
<li><a href="sitemap.html"><span class="material-symbols-rounded">lan</span><span class="nav__text">Sitemap</span></a></li>
<li><a href="feedback.html"><span class="material-symbols-rounded">chat</span><span class="nav__text">Comments</span></a></li>
<li><a href="team.html" class="active"><span class="material-symbols-rounded">info</span><span class="nav__text">About Us</span></a></li>
</ul>
</nav>
<div class="cursor rounded move" id="cursor"></div> <!-- Cursor of the Document -->
<!-- Main Content of the Document -->
<div class="photoWrapperMain">
<div class="photoWrapper">
<div class="card">
<div class="imageContaner">
<div class="details2">
<h3 class="devName">Suneth Nawoda</h3>
<p class="devDes">(Student 1) - Splash page, Shop</p>
</div>
<img class="devImage" src="resources/images/developers/nawoda.jpg" alt="">
</div>
<div class="details"></div>
</div>
<div class="card">
<div class="imageContaner">
<div class="details2">
<h3 class="devName">Lashen Martino</h3>
<p class="devDes">(Student 2) - Home, Feedback page</p>
</div>
<img class="devImage" src="resources/images/developers/lashen2.jpg" alt="">
</div>
<div class="details"></div>
</div>
<div class="card">
<div class="imageContaner">
<div class="details2">
<h3 class="devName">Supun Gimhana</h3>
<p class="devDes">(Student 3) - User profile, Team</p>
</div>
<img class="devImage" src="resources/images/developers/supun.jpg" alt="">
</div>
<div class="details"></div>
</div>
<div class="card">
<div class="imageContaner">
<div class="details2">
<h3 class="devName">Rehan Devkalana</h3>
<p class="devDes">(Student 4) - Gallery, Site map</p>
</div>
<img class="devImage" src="resources/images/developers/rehan.jpg" alt="">
</div>
<div class="details"></div>
</div>
</div>
</div>
<!-- Footer Section of the Document -->
<div id="footer">
<div class="footer__container">
<div class="animate" id="dev">
<a href="subpages/supun-info.html"><img src="resources/images/developers/supun.jpg" alt="Supun"><span>Supun Gimhana (Contributor)</span></a>
</div>
<div class="footer__container__left">
<h3>Life on Land</h3>
<p>© Life on Land is a collaborative website built by a group of students from IIT - 2024</p>
</div>
<div class="footer__container__right">
<h3>Contact Us</h3>
<ul>
<li><a href="mailto:lashenmartino@gmail.com">Email</a></li>
<li><a href="https://www.facebook.com/lashen.martino">Facebook</a></li>
<li><a href="https://twitter.com/LashenMartino?s=09">Twiter</a></li>
</ul>
</div>
</div>
</div>
<!-- JavaScript files -->
<script src="js/cursor.js"></script>
</body>
</html>