-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathour-team.html
93 lines (73 loc) · 3.96 KB
/
our-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
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Team</title>
<link rel="stylesheet" type="text/css" href="./static/css/our-team.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- fonts -->
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
</head>
<body class="d-flex flex-column">
<!------------------ Navigation Bar-------------------->
<div class="nav-bar">
<a class="active" href="index.html"> <i class="brand">Vyaw-say</i> </a>
<a href="#"> <i class="fa fa-search"></i> </a>
<a href="#"> <i class="fa fa-envelope"></i> </a>
<a href="#"> <i class="fa fa-globe"></i> </a>
<a href="#"> <i class="fa fa-user-circle-o"></i> </a>
</div>
<script src="https://kit.fontawesome.com/dadac063ad.js" crossorigin="anonymous"></script>
<h1 class="page-head">Our Team</h1>
<div class="profile-card">
<div class="row">
<div class="col-lg-4 mb-2 column">
<img src="./static/images/profile.png" alt="Avatar">
<div class="profile">
<h3>Name</h3>
<p class="info">Department, College</p>
<div class="social-media">
<a href=""> <i class="fa fa-twitter"></i> </a>
<a href=""> <i class="fa fa-linkedin"></i> </a>
<a href=""> <i class="fa fa-github"></i> </a>
</div>
</div>
</div>
<div class="col-lg-4 mb-2 column">
<img src="./static/images/profile.png" alt="Avatar">
<div class="profile">
<h3>Name</h3>
<p class="info">Department, College</p>
<div class="social-media">
<a href=""> <i class="fa fa-twitter"></i> </a>
<a href=""> <i class="fa fa-linkedin"></i> </a>
<a href=""> <i class="fa fa-github"></i> </a>
</div>
</div>
</div>
<div class="col-lg-4 mb-2 column">
<img src="./static/images/mohit.jpg" alt="Avatar">
<div class="profile">
<h3>MOHIT SONKAR</h3>
<p class="info">Electronics & Communication, MNNIT ALLAHABD</p>
<div class="social-media">
<a href="https://twitter.com/MohitSo27025251"> <i class="fa fa-twitter"></i> </a>
<a href="https://www.linkedin.com/in/mohit-sonkar-b3b826174"> <i class="fa fa-linkedin"></i> </a>
<a href="https://github.com/mohit7523"> <i class="fa fa-github"></i> </a>
</div>
</div>
</div> <!-- column -->
</div><!-- row -->
</div><!-- profile-card -->
<footer>
© Team: <a href="#">Tech-Jan</a>, Webster@Avishkar-2020, MNNIT Allahabad
</footer>
</body>
</html>