-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreators.html
82 lines (74 loc) · 3.15 KB
/
creators.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Creators - Let`s Do It</title>
<link rel="stylesheet" href="creators.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:ital,wght@0,400;0,700;0,900;1,400&display=swap"
rel="stylesheet">
</head>
<body>
<!-- navigation bar and header -->
<header>
<center>
<h1><b> LETS DO IT </b></h1>
</center>
<nav class="navbar">
<div class="content">
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./creators.html">CREATORS</a></li>
<li><a href="./about.html">ABOUT</a></li>
</ul>
</div>
</nav>
</header>
<!-- Creators Content -->
<main>
<center>
<section class="creators-section">
<h2>Meet Our Creators</h2>
<div class="creator">
<img src="assets/samarth_pyati.jpeg" alt="Samarth Pyati">
<h3>Samarth Sanjay Pyati</h3>
<p>
<em>
- First Year Student at RVU<br>
- B.Tech HONORS (2023-2024)<br>
- Email: [email protected]
</em>
</p>
<div class="social-media">
<a href="https://www.linkedin.com/in/samarth-pyati/" target="_blank"><i
class="fa-brands fa-linkedin fa-2xl"></i></a>
<a href="https://www.instagram.com/Samarth_pyati/" target="_blank"><i
class="fa-brands fa-instagram fa-2xl"></i></a>
<a href="https://www.instagram.com/Samarth_pyati/" target="_blank"><i
class="fa-brands fa-github fa-2xl"></i></a>
</div>
</div>
<div class="creator">
<img src="assets/samarth_swarup.jpeg" alt="Samarth Swarup">
<h3>Samarth Swarup</h3>
<p><em>
- First Year Student at RVU<br>
- B.Tech HONORS (2023-2024)<br>
- Email: [email protected]
</em></p>
<div class="social-media">
<a href="https://www.instagram.com/mr.shmix/" target="_blank"><i
class="fa-brands fa-instagram fa-2xl"></i></a>
</div>
</div>
</section>
</main>
</center>
<script src="creators.js"></script>
<script src="https://kit.fontawesome.com/6dbd7dcc73.js" crossorigin="anonymous"></script>
</body>
</html>