forked from sangamhoni/harmonisync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam-intro.html
More file actions
81 lines (74 loc) · 3.28 KB
/
Copy pathteam-intro.html
File metadata and controls
81 lines (74 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HarmoniSync</title>
<link rel="stylesheet" href="./Flask app/static/team-intro.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="./Flask app/static/logo-svg-yellow.svg" alt="#">
</div>
<div class="hero-text">
<h3>HarmoniSync</h3>
</div>
</div>
</header>
<main>
<div class="container">
<div class="about-us">
<h2>Our <i>HarmoniX</i> Team</h2>
<hr>
</div>
<div class="team-grid">
<!-- Team Member 1 -->
<div class="team-member">
<span>1.</span><h3>Kritan Bhandari</h3>
<p><strong>University:</strong> Fisk University</p>
<p><strong>Classification:</strong> Freshman</p>
<p><strong>Interests:</strong> Web development, AI, Music</p>
<div class="social-links">
<a href="https://github.com/kritanbhandari" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/kritanbhandari/" target="_blank">LinkedIn</a>
</div>
</div>
<!-- Team Member 2 -->
<div class="team-member">
<span>2.</span><h3>Sangam Subedi</h3>
<p><strong>University:</strong> Fisk University</p>
<p><strong>Classification:</strong> Freshman</p>
<p><strong>Interests:</strong> Data Science, Music, Gaming</p>
<div class="social-links">
<a href="https://github.com/sangamhoni" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/sangamhoni/" target="_blank">LinkedIn</a>
</div>
</div>
<!-- Team Member 3 -->
<div class="team-member">
<span>3.</span><h3>Tao Tao</h3>
<p><strong>University:</strong> Vanderbilt University</p>
<p><strong>Classification:</strong> Junior </p>
<p><strong>Interests:</strong> Software Engineering, Music Composition</p>
<div class="social-links">
<a href="https://github.com/TT515" target="_blank">GitHub</a>
<a href="#" target="_blank">LinkedIn</a>
</div>
</div>
<!-- Team Member 4 -->
<div class="team-member">
<span>4.</span><h3>Jaco Lname</h3>
<p><strong>University:</strong> Vanderbilt University</p>
<p><strong>Classification:</strong> Sophomore </p>
<p><strong>Interests:</strong> Cybersecurity, Music Theory</p>
<div class="social-links">
<a href="https://github.com/Jaco-Ren" target="_blank">GitHub</a>
<a href="#" target="_blank">LinkedIn</a>
</div>
</div>
</div>
</main>
</body>
</html>