-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team Phenoms</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="logo.png" type="image/x-icon">
</head>
<body>
<header>
<h1>Team Phenoms Profiles</h1>
</header>
<div class="container">
<!-- Dheemanth -->
<div class="card blue">
<div class="image">
<img src="./dheemanth/profile.jpg" alt="Dheemanth">
</div>
<h3>DHEEMANTH S H</h3>
<a href="./dheemanth/resume.html"><button class="btn resume">Resume</button></a>
<a href="./dheemanth/biodata.html"><button class="btn biodata">Biodata</button></a>
</div>
<!-- Irfan -->
<div class="card green">
<div class="image">
<img src="./irfan/profile.JPG" alt="Irfan">
</div>
<h3>Md IRFAN GULAGUNDI</h3>
<a href="./irfan/resume.html"><button class="btn resume">Resume</button></a>
<a href="./irfan/biodata.html"><button class="btn biodata">Biodata</button></a>
</div>
<!-- Mohan -->
<div class="card cyan">
<div class="image">
<img src="./mohan/profile.jpg" alt="Mohan">
</div>
<h3>MOHAN KUMAR S</h3>
<a href="./mohan/resume.html"><button class="btn resume">Resume</button></a>
<a href="./mohan/biodata.html"><button class="btn biodata">Biodata</button></a>
</div>
<!-- Monisha -->
<div class="card pink">
<div class="image">
<img src="./monisha/profile.jpg" alt="Monisha">
</div>
<h3>MONISHA ARADHYA C M</h3>
<a href="./monisha/resume.html"><button class="btn resume">Resume</button></a>
<a href="./monisha/biodata.html"><button class="btn biodata">Biodata</button></a>
</div>
</div>
<footer>
<p>2024 Team Phenoms Profiles</p>
</footer>
</body>
</html>