-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (101 loc) · 3.53 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
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swapnil's Profile</title>
<!-- Font-Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous" />
<!-- Stylesheets -->
<link rel="stylesheet" href="css/utilities.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="navbar">
<div class="container flex">
<h1 class="logo">sdubey23</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</div>
<header class="image">
<img class="image-img" src='/images/hero.svg' />
<h1 class="image-heading">Hey! I am Swapnil,a Web Developer focused on crafting great
web experiences</h1>
</header>
<section class="section ow">
<div class="container container-center">
<h1>Current Profile</h1>
<p>I am currently working in Cognizant Technology Solutions as Programmer Analyst.</p>
</div>
</section>
<section class="languages">
<h2 class="md text-center my-2">
Technologies
</h2>
<div class="container flex">
<div class="card">
<h4>HTML</h4>
<img src="images/logos/html5.png" />
</div>
<div class="card">
<h4>CSS</h4>
<img src="images/logos/css.png" />
</div>
<div class="card">
<h4>JavaScript</h4>
<img src="images/logos/js.png" />
</div>
<div class="card">
<h4>jQuery</h4>
<img src="images/logos/jquery.png" />
</div>
<div class="card">
<h4>ReactJs</h4>
<img src="images/logos/react.png" />
</div>
<div class="card">
<h4>SQL</h4>
<img src="images/logos/sql.png" />
</div>
</div>
</section>
<section class="project-section bg-primary my-2 py-2">
<div class="container">
<div class="text-center">
<h2 class="lg">Projects</h2>
<p class="lead my-1">It's a skill that takes lifetime to master and I have found some
of my own
</p>
<a href="projects.html" class="btn btn-dark">See Projects</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer bg-dark py-5">
<div class="container grid grid-2">
<div>
<h1>Let's Connect</h1>
</div>
<div class="social">
<a href="https://github.com/SDUBEY23">
<i class="fab fa-github fa-2x"></i>
</a>
<a href="https://www.linkedin.com/in/sdubey23/">
<i class="fab fa-linkedin fa-2x"></i>
</a>
<a href="https://twitter.com/Swapnil46951833">
<i class="fab fa-twitter fa-2x"></i>
</a>
</div>
</div>
</footer>
</body>
</html>