-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (93 loc) · 2.89 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.wrapper{
display:grid;
grid-template-columns: 60% 40%;
grid-gap:1em;
}
.wrapper > div{
background:#eee;
padding:1em;
}
.wrapper > div:nth-child(odd){
background:#ddd;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<center>
<header>
<h1>Subhangi Choudhary</h1>
</header>
</center>
<div class="wrapper">
<div>
<p>I am Subhangi Choudhary, an undergraduate persuing bachelor's in Instrumentation and Electronics Engineering from College of Engineering and Technology, Bhubaneswar, India. I've contributed to hardware projects and interested in ML, python, algorithms and data sctructures.</p>
<hr>
<h3>Subjects</h3>
<ol>
<li>Control System</li>
<li>GT</li>
<li>Industrial Automation</li>
<li>BCSI</li>
</ol>
<h3>Hobbies</h3>
<ul>
<li>Painting</li>
<li>Dancing</li>
</ul>
<hr>
<table>
<tr>
<th>Song</th>
<th>Singer</th>
</tr>
<tr>
<td>Starboy</td>
<td>The Weeknd</td>
</tr>
<tr>
<td>Rockstar</td>
<td>Post Malone</td>
</tr>
<tr>
<td>Blinding Lights</td>
<td>The Weeknd</td>
</tr>
</table>
<hr>
Phone: <a href="">8917239009</a><br>
Whatsapp: <a href="https://wa.link/kzenym">Link</a><br>
Email: <a href="">[email protected]</a>
</div>
<div >
<iframe src="https://www.google.com" height="200" width="300"></iframe> <hr>
<h3>Subhangi Choudhary</h3>
<h3>1701106480</h3>
<form action="" method="post">
<input type="text" name="name" id="" placeholder="Name"><br><br>
<input type="number" name="num" id="" placeholder="Number"><br><br>
<textarea name="message" id="" cols="30" rows="10" placeholder="Message"></textarea>
</form>
<button type="submit">Submit</button>
</div>
</div>
</body>