-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (85 loc) · 2.96 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
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Uttam's Resume</title>
</head>
<body>
<header>
<table>
<tr>
<td><img width="200"
src="MyPic.jpeg"
alt="Uttam's Image"></td>
<td>
<h2>UTTAM KUMAR</h2>
<p>I am Curious to learn Web Development.</p>
<p>Currently I am pursuing Bachelor of Engineering in Computer Science and Engineering from Chandigarh
University.</p>
</td>
</tr>
</table>
<nav>
<ul> <a href="#education">Education</a></ul>
<ul> <a href="#project">Project</a></ul>
<ul> <a href="#connectme">Connect with me</a></ul>
</nav>
<hr>
</header>
<!-- Heading Completed -->
<main>
<section id="education">
<h2>Education</h2>
<table border="">
<tr>
<th>Course</th>
<th>Institute</th>
<th>Year</th>
</tr>
<tr>
<td>10<sup>th</sup> Grade</td>
<td>G.B.R.C</td>
<td>2018</td>
</tr>
<tr>
<td>12<sup>th</sup> Grade</td>
<td>G.B.R.C</td>
<td>2018 - 2020</td>
</tr>
<tr>
<td>B.E in CSE</td>
<td>Chandigarh University</td>
<td>2021 - 2025</td>
</tr>
</table>
</section>
<section id="project">
<h2>Projects</h2>
<ol>
<h3>Sorting Visualizer</h3>
<ul>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Aut, quos animi? Illum pariatur molestiae provident optio, ipsa possimus, id repellat repellendus officia, aut eligendi eum ea enim ducimus est perferendis!
</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt, nisi cupiditate officia, inventore tenetur optio dignissimos repellendus ex necessitatibus dolorem dolor neque repellat et ipsum delectus quasi hic aperiam quibusdam.</p>
</ul>
<h3>Face Recoginition</h3>
<ul>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Hic labore, voluptates eligendi odit veniam ullam praesentium fugiat quod, deleniti molestias eius officiis ipsam iure natus architecto deserunt velit soluta nobis.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam fugit qui itaque dolorem suscipit accusamus ratione quae, quod error aspernatur sint? Aperiam, debitis quidem. Laudantium doloremque in minima magni odit.</p>
</ul>
</ol>
<hr>
</section>
</main>
<!-- Main Completed -->
<footer id="connectme">
<h2>Connect With Me</h2>
<p>Gmail :- uttamraaz7177@gmail.com</p>
<p>Linked In :- Uttam Kumar</p>
<a href="#">Go To Top</a>
</footer>
</body>
</html>