-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreators v2.html
148 lines (89 loc) · 4.85 KB
/
creators v2.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Creators</title>
<!-- JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- FONTAWESOME -->
<script src="https://kit.fontawesome.com/72c4f8360c.js" crossorigin="anonymous"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/styles-creator.css">
<!-- FONTS -->
<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=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet">
</head>
<body>
<section id="title">
<div class="container-fluid-creator">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand" href="index.html">RWYR</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html#pricing">Free</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#cta-main-common">Join us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
About Us
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Goal</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">Creators</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="whatsapp.html">Functioning</a></li>
</ul>
</ul>
</div>
</nav>
<!-- Title -->
</section>
<!-- Creators -->
<section id="creator">
<div class="row padding-max991" style="margin-left:0; margin-right:0;">
<div class="col-lg-4 col-md-6 col-12 creator-box">
<img class="personal-pic" src="images/neil.jpeg" alt="neil-image">
<h2 style="padding-bottom:2rem;">Hey, I'm Neil</h2>
</div>
<div class="col-lg-4 col-md-6 col-12 creator-box">
<img class="personal-pic" src="images/nirja.png" alt="neil-image">
<h2 style="padding-bottom:2rem;">Hey, I'm Nirja</h2>
</div>
<div class="col-lg-4 creator-box">
<img class="personal-pic" src="images/yash.jpeg" alt="neil-image">
<h2 style="padding-bottom:2rem;">Hey, I'm Yash(endra)</h2>
</div>
</div>
</section>
<section id="commoninfo">
<h3 class="commoninfo-text">We are here to be the seniors you never had and <em>help you</em> figure out how to go about the word <b>research</b>. While our primary goals here would be to help students to do an original study from scratch, we will try to help everyone in all domains of research. Biostatistics is a mathematical tool we have in our armamentarium to answer many research questions but often becomes an obstacle for medical students, our work here will emphasize it immensely. We don't proclaim to be experts; we are peer mentors who are learning but wish to share whatever we have learnt and <em>pass the torch forward!</em> </h3>
<hr>
<p class="commoninfo-text-p">Yash's name above is already <em>teaching</em> you a lesson, you can ignore reading text you see in parenthesis in research papers!</p>
</section>
<!-- Footer -->
<footer id="footer">
<hr class="hr-footer">
<a href=""><i class="fa-brands fa-twitter logo-btn"></i></a>
<a href=""><i class="fa-brands fa-facebook logo-btn"></i></a>
<a href=""><i class="fa-brands fa-instagram logo-btn"></i></a>
<a href=""><i class="fa-solid fa-envelope logo-btn"></i></a>
<p class="footer-text">© Copyright 2022 Research Within Your Reach</p>
</footer>
</body>
</html>