forked from faisalnazir7/xilinxSRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
167 lines (163 loc) · 5.57 KB
/
about.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<html lang="en" dir="ltr">
<link rel="stylesheet" href="css/styles.css">
<head>
<meta charset="utf-8">
<title>About</title>
<link rel="icon" href="favicon.ico" />
<!-- bootstrap_css -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- bootstrap_js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</head>
<body class="bg-dark text-white" >
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/index.html">
<img src="logo.png" alt="logo" width="200" height="70" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdownMenuLink"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Menu
</a>
<ul
class="dropdown-menu dropdown-menu-dark"
aria-labelledby="navbarDarkDropdownMenuLink"
>
<li><a class="dropdown-item" href="gallery.html">Gallery</a></li>
<li><hr class="dropdown-divider" /></li>
<li><a class="dropdown-item" href="about.html">About Us</a></li>
<li><a class="dropdown-item" href="fellowMembers.html">Fellow Members</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdownMenuLink"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Events
</a>
<ul
class="dropdown-menu dropdown-menu-dark"
aria-labelledby="navbarDarkDropdownMenuLink"
>
<li><a class="dropdown-item" href="eventStem.html">STEM programme</a></li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="eventEnt.html"
>Engineering & Technology Education</a
>
</li>
<li><hr class="dropdown-divider" /></li>
<li>
<a class="dropdown-item" href="eventPolytech.html">Polytechnic Students</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="research.html"
>Research</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="card text-white bg-dark mb-3 mx-auto text-center" style="max-width: 70rem;">
<div class="card-body">
<p >
<h1><u>About</u></h1>
</p>
<br />
<br />
<p>
<h5>Xilinx NEXUS is an innovative program of SRMIST from the grants<br />
received from Xilinx, Inc., focused on the funding of Women in <br />
Technology(WIT) programs within the university setting.</h5>
</p>
<br />
<br />
<br />
<br />
<br />
<h2 style="color:yellow">Vision of Xilinx NEXUS</h2>
<br />
<br />
<h4>The goal of the prgram is to increase the representation, participation and entrepreneurial
skills and abilities of women in Technology focused careers.</h4>
<br />
<br /><br />
<br /><br />
<br />
<h2 style="color:yellow">MISSION of Xilinx NEXUS is to:</h2>
<br />
<br />
<ul style="text-align:left">
<li><h4>Educate Students through STEM programs to integrate them into a cohesive learning paradigm based on real world applications.</h4></li>
<br />
<br />
<li>
<h4>Develop new skill sets through mentorship events through seminars and workshops.</h4>
</li>
<br />
<br />
<li><h4>Steer girl students in the direction of the research and development for the benefit of women folk.</h4></li>
</ul>
</div>
</div>
</body>
<div class="container">
<footer
class="
d-flex
flex-wrap
justify-content-between
align-items-center
py-3
my-4
border-top
"
>
<div class="d-flex align-items-center">
<a
href="/index.html"
class="mb-3 me-2 mb-md-0 text-muted text-decoration-none lh-1"
>
<img src="logo.png" alt="logo" width="200" height="70" />
</a>
<span class="text-muted ">
© 2022, SRM Institute of Science and Technology, Potheri, SRM
Nagar, Kattankulathur, Tamil Nadu 603203</span
>
</div>
</footer>
</div>
</html>