-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (88 loc) · 3.74 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
102
103
104
105
106
107
108
109
<!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>Anushka | Portfolio Website</title>
<link href="lib/component-styles.css" rel="stylesheet" />
<!-- social media icons library -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navigation bar -->
<nav class="navigation container">
<div class="nav-brand">Anushka</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="/blogs.html">Blogs</a>
</li>
<li class="list-item-inline">
<a class="link" href="/contact.html">Contact</a>
</li>
<!-- <li class="list-item-inline">
<a class="link" href="/">Resume</a>
</li> -->
</ul>
</nav>
<!-- Header -->
<header class="hero">
<img class="hero-img" src="images/hero.svg"/>
<h1 class="hero-heading">Hey <span class="heading-inverted">there!</span></h1>
</header>
<!-- Technology section -->
<section class="section ow">
<div class="container container-center">
<h1>Technologies</h1>
<p>I'm familiar with JAVA, SQL, HTML, CSS, and Git. I have worked with Springboot framework also. And I also know a little bit of designing UI using Adobe XD and Figma.</p>
</div>
</section>
<!-- Projects section -->
<section class="section">
<div class="container container-center">
<h1>Projects</h1>
<p>I have made some projects showcasing what I have learned till now. These are also available on my GitHub profile.</p>
<a class="link link-primary" href="https://github.com/Anushka-shukla">See Projects</a>
</div>
</section>
<!-- Blogs sections -->
<section class="section ow">
<div class="container container-center">
<h1>Blogs</h1>
<p>I keep learning and exploring new concepts and technologies and I like sharing them with the world so I write blogs and publish them on Medium. Few of my technical articles are published in Geeks for Geeks too.</p>
<a class="link link-secondary" href="https://medium.com/@shuklaannushka">Read Blogs</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-header">Connect with me</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/Anushka-shukla">
<i class="fa fa-github fa-2x" aria-hidden="true"></i>
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/anushka4120">
<i class="fa fa-twitter fa-2x" aria-hidden="true"></i>
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/anushka-055b3a169">
<i class="fa fa-linkedin fa-2x" aria-hidden="true"></i>
</a>
</li>
<li class="list-item-inline"><a class="link" href="https://medium.com/@shuklaannushka">
<i class="fa fa-medium fa-2x" aria-hidden="true"></i>
</a>
</li>
</ul>
</footer>
</body>
</html>