-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (114 loc) · 4.64 KB
/
Copy pathindex.html
File metadata and controls
117 lines (114 loc) · 4.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prograd Profile</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class="logo-text">ProGrad</li>
<li>
<ul>
<li><a href="#home" class="nav-link">HOME</a></li>
<li><a href="#bio" class="nav-link">BIO</a></li>
<li><a href="#portfolio" class="nav-link">PORTFOLIO</a></li>
<li><a href="#skills" class="nav-link">SKILLS</a></li>
<li><a href="#contact" class="nav-link link-button">CONTACT</a></li>
</ul>
</li>
</ul>
</nav>
<header>
<div id="home">
<br>
<p>I BELEIVE IN</p>
<h1>EAT(); SLEEP(); CODE(); REPEAT();</h1>
</div>
</header>
<section id="bio">
<img src="./Assest/2019-12-09 16.20.27.jpg" alt="Picture">
<article>
<h2>Deepankar Tiwari</h2><br>
<p>Unix/Linux systems administrator with experience configuring, monitoring, upgrading and maintaining systems hardware, software and related infrastructure. I am willing to learn full stack development, to start this
journey I have joined Full Stack Developer program by FACE. I am looking forward to add knowledge and
values to my carrier.
<span class="break"></span>I want to continuously learn, always curious about the new thing in the town.
I beleive persiverance,consistency and commitment is the key to success. I want to use my skills, knowledge
and ability to enhance my career growth.<span class="break"></span>
</p><br>
<a href="#" class="link-button" > Download My Resume</a>
</article>
</section>
<section>
<div id="portfolio">
<h3>PORTFOLIO</h3>
<p>Some of my best project so far</p>
<hr style="width: 50%;">
<div>
<article>
<img src="https://i1.faceprep.in/ProGrad/Coding-icon.svg" alt="img">
<h4>Personal Blog</h4>
<p>A blog where I pen my thought on programming.</p>
</article>
<article>
<img src="https://i1.faceprep.in/ProGrad/Coding-icon.svg" alt="img">
<h4>Tic Tac Toe</h4>
<p>Complete Tic Toc game along with GUI using JAVA</p>
</article>
<article>
<img src="https://i1.faceprep.in/ProGrad/Coding-icon.svg" alt="img">
<h4>Time Table Calculater</h4>
<p>A web application for automatic time table generation</p>
</article>
</div>
</div>
</section>
<section id="skills">
<h3>SKILLS</h3>
<div id="skills-container">
<div>
<h4>TECHNICAL SKILLS</h4>
<div>
<ul>
<li>HTML</li>
<li><progress value="70" max="100"> </progress></li>
<li>CSS</li>
<li><progress value="70" max="100"> </progress></li>
<li>JAVA</li>
<li><progress value="70" max="100"> </progress></li>
<li>ANGULAR</li>
<li><progress value="70" max="100"> </progress></li>
<li>PYTHON</li>
<li><progress value="70" max="100"></progress></li>
</ul>
</div>
</div>
<div>
<h4>LANGUAGES</h4>
<div>
<ul>
<li>ENGLISH</li>
<li><progress value="70" max="100"></progress></li>
<li>HINDI</li>
<li><progress value="70" max="100"></progress></li>
<li>PUNJABI</li>
<li><progress value="70" max="100"></progress></li>
</ul>
</div>
</div>
</div>
</section>
<footer id="contact">
<h3>CONTACT</h3>
<form action="#">
<input class="input" type="text" placeholder="ENTER YOUR NAME">
<input class="input" type="text" placeholder="ENTER YOUR EMAIL">
<input class="input" type="text" placeholder="ENTER YOUR MESSEGE">
<input type="button" value="Send Message" class="link-button">
</form>
</footer>
</body>
</html>