-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlh.html
144 lines (134 loc) · 6.87 KB
/
mlh.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/*basic reset*/
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
background: #6441a5; /* fallback for old browsers */
background: -webkit-linear-gradient(
to left,
#6441a5,
#2a0845
); /* Chrome 10-25, Safari 5.1-6 */
}
body {
font-family: montserrat, arial, verdana;
background: transparent;
}
/*form styles*/
#msform {
text-align: center;
position: relative;
margin-top: 30px;
}
#msform fieldset {
background: white;
border: 0 none;
border-radius: 0px;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
padding: 20px 30px;
box-sizing: border-box;
width: 80%;
margin: 0 10%;
/*stacking fieldsets above each other*/
position: relative;
}
</style>
<title>Hello, world!</title>
</head>
<body>
<!-- MultiStep Form -->
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-md-offset-3">
<form id="msform">
<!-- progressbar -->
<!-- fieldsets -->
<fieldset>
<h2 class="fs-title">MLH LHD Share</h2>
<h3 class="fs-subtitle">List of attendees</h3>
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Sno</th>
<th scope="col">Name</th>
<th scope="col">Email</th>
</tr>
</thead>
<tbody>
<tr>
<td class="data">1</th>
<td class="data">Ravi Prakash</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">2</th>
<td class="data">D. Sai Naveen</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">3</th>
<td class="data">Kolli Sudeepa</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">4</th>
<td class="data">KVSP Akhilesh</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">5</th>
<td class="data">Kalaga Sahitya</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">6</th>
<td class="data">Srikanth</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">7</th>
<td class="data">Preethi Gedela</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">8</th>
<td class="data">Bharat Chandra</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">9</th>
<td class="data">Srujana R L V</td>
<td class="data">[email protected]</td>
</tr>
<tr>
<td class="data">10</th>
<td class="data">Bharat Chandra</td>
<td class="data">[email protected]</td>
</tr>
</tbody>
</table>
</fieldset>
</form>
<!-- link to designify.me code snippets -->
<!-- /.link to designify.me code snippets -->
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>