-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 2.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<style type="text/css">
body {
background: #424752;
color: white;
text-align: center;
}
a{
color:white;
}
.review{
padding-top: 180px;
}
</style>
<script src="./script.js"></script>
<title>Meet CmdrSam</title>
</head>
<body>
<h1 class="display-1">Hi I am Saumya Verma</h1>
<h3 class="display-4">aka CmdrSam</h3>
<div id='opening'>
<p class="lead">
Undergrad student form VIT Vellore, AI enthusiast and incoming JP Morgan intern for 2021.
Love to code in Python and Java. Trying out Webdev!
</p>
<p class="lead">I've made a few small projets, take a look</p>
<div class="btn-group-vertical">
<a role="button" class="btn btn-primary" href="/sortingApp/sort.html">Sort'O'meter</a>
<a role="button" class="btn btn-primary" href="/removeWhite/removeWhiteBackground.html">White background remover</a>
<a role="button" class="btn btn-primary" href="/Infosec/InfoSec.html">SQL Injectin Prevention</a>
<a role="button" class="btn btn-primary" href="/Image Processing/imageDownload.html">Download my Image processing Matlab scripts</a>
<a role="button" class="btn btn-primary" href="/covid/dataVisLab.html">COVID Live data using R</a>
</div>
<div class="input-group mb-3" style="padding-right: 20%; padding-left: 20%; padding-top: 200px;">
<input type="text" class="form-control" placeholder="Any Suggestions?" aria-label="Suggestions" aria-describedby="basic-addon2" id="review">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button" onclick="submitReview()">Submit</button>
</div>
</div>
</body>
</html>