-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.html
122 lines (115 loc) · 4.58 KB
/
Project.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
<!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="style.css">
<title>Project</title>
</head>
<body>
<nav>
<ul>
<li class="logo-font">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 id="HOME">
<DIV>
<P>I BELIEVE IN</P>
<H1>EAT (); CODE (); SLEEP (); REPEAT ();</H1>
</DIV>
</header>
<section id="BIO">
<img id="profile" src="/Asset/130737_Ramkumar A.jpg"" alt="Photo">
<article>
<h2>Ramkumar</h2>
<p>I am a passionate Engineer with a degree in Mechanical Engineering. My very first experience with code
was when I started my own blog. My struggle tocustomize the blog pages introduced me to HTML & CSS.
Sooner, the excitment of having the power to structure pages on my own sounded amazing and that's when I
decided to purse Web development.
<span class="break"></span>
Recently, I have taken up a Full Stack Development program with FACE, I have knowledge of HTML, CSS and
Javascript, Java, C++ and Data structure. Rationa thought process and goal-oriented planning are my
strengts.
<span class="break"></span>
I am currently on the look out for a challenging role to build products that make a difference.
</p>
<a href="#" class="link-button">Download My Resume</a>
</article>
</section>
<section id="PORTFOLIO">
<h3>PORTFOLIO</h3>
<P>Some of my best projects so far</P>
<hr>
<div>
<article>
<img src="/Asset/Coding-icon.svg" alt="Image">
<h4>PERSONAL BLOG</h4>
<p>A blog where I pen my own thoughts on programming</p>
</article>
<article>
<img src="/Asset/Coding-icon.svg" alt="Image">
<h4>TIC TAC TOE</h4>
<p>Complete Tic Tac Toe game along with GUI using Jave</p>
</article>
<article>
<img src="/Asset/Coding-icon.svg" alt="Image">
<h4>TIME TABLE GENERATOR</h4>
<p>A web application for automatic time table generation</p>
</article>
</div>
</section>
<section id="SKILLS">
<h3>SKILLS</h3>
<div id="skills-container">
<div>
<h4>TECHNICAL SKILLS</h4>
<div>
<ul>
<li>HTML</li>
<li> <progress max=100 value=80></progress></li>
<li>CSS</li>
<li><progress max=100 value=80></progress></li>
<li>JAVA</li>
<li><progress max=100 value=80></progress></li>
<li>JAVASCRIPT</li>
<li><progress max=100 value=80></progress></li>
<li>ANGULAR</li>
<li><progress max=100 value=80></progress></li>
</ul>
</div>
</div>
<div>
<h4>LANGUAGES</h4>
<div>
<ul>
<li>ENGLISH</li>
<li><progress max=100 value=80></progress></li>
<li>TAMIL</li>
<li><progress max=100 value=80></progress></li>
<li>TELEGU</li>
<li><progress max=100 value=80></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 MESSAGE">
<input type="submit" class="link-button" Send Message>
</form>
</footer>
</body>
</html>