-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 3.38 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
<!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>Home | Kirti Singh</title>
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">iAmKirtiSingh.</div>
<ul class="non-bullets list-inline nav-pills">
<li><a href="/" class="link active">Home</a></li>
<li><a href="/projects.html" target="_blank" class="link">Projects</a></li>
<li><a href="/blogs.html" target="_blank" class="link">Blogs</a></li>
<li><a href="#footer" class="link">Contact Me</a></li>
</ul>
</nav>
<header class="hero">
<img
class="hero-image"
src="/images/header-image.png"
/>
<h2 class="hero-heading">Hello! I am Kirti singh. I am on my way to become
<span class="heading-inside">Developer</span>.
</h2>
</header>
<section class="lightsection section">
<div class="container-center container">
<h2>About Me</h2>
<p>
I have 3+ year of testing experience. I have worked with organisation Wipro Limted, Altudo Consultancy Privated Limited and currently working with Accenture as Test Engineer Analyst.
Also, I am learning Web Development with <span class="heading-inside">NEOGCAMP</span>. I am on Level Zero, my short term goal is to become a Web Developer along with getting selected in Level One.</p>
</div>
</section>
<section class="darksection section skills">
<div class="container-center container">
<h2>Skills</h2>
<div><span class="heading-inside">Amature : </span> HTML5, CSS, JavaScript, React</div>
<div><span class="heading-inside">Moderate : </span>Testing, Selenium Tool, Protractor, Postman</div>
</div>
</section>
<section class="lightsection section">
<div class="container-center container">
<h2>Projects</h2>
<p>As I am on my way to beacome developer. On this journey I am going to learn many thing and I like to showcase all my learning.
</p>
<a href="/projects.html" class="link primary-link">Projects</a>
</div>
</section>
<section class="darksection section">
<div class="container-center container">
<h2>Blogs</h2>
<p>I am somebody who loves adventure, new cultures, different experiences and all good things that one can learn outside of the comfort of our homes.
I want to experience all that this beautiful earth has for us humans and document it the way. Not only the travel blog , I will also share the blog on technical part.</p>
<a href="/blogs.html" class="link secondary-link">Read Blogs</a>
</div>
</section>
<footer class="footer" id="footer">
<div class="footer-header">
You can connect me @
</div>
<ul class="social-links non-bullets list-inline">
<li>
<a href="https://www.instagram.com/steppingbeyond_/" target="_blank" class="link fa fa-instagram"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/kirti2714/" target="_blank" class="link fa fa-linkedin"></a>
</li>
<li>
<a href="https://twitter.com/KirtiSi70062355" target="_blank" class="link fa fa-twitter"></a>
</li>
</ul>
</footer>
</body>
</html>