-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
88 lines (73 loc) · 4.08 KB
/
About.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About: 10DaysOfJavaScript</title>
<!--Bootstrap CSS-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!--Font-awesome CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--My CSS-->
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="index.html">#10DaysOfJavascript</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="index.html">Home</a>
<a class="nav-item nav-link active" href="About.html">About Me</a>
</div>
</div>
</div>
</nav>
<!-- About me -->
<div class="container">
<div class="row about-row">
<h2 class="page-header-about">PERSON BEHIND THIS</h2>
<div class="col-lg-6 col-md-6 col-sm-12">
<img src="./slider-1.jpg" alt="profile image" class="profile-img">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 description">
<div class="container">
<h3 class="greet">Namaste🙏</h3>
<h2 class="name">I'm Vishal Pandey</h2>
<a href="https://github.com/vishalps2606" target="_blank" rel="noopener noreferrer"><i
class="fa fa-github"></i></a>
<a href="https://twitter.com/VishalP22541789" target="_blank" rel="noopener noreferrer"><i
class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/vishal-pandey-1a7a141b2" target="_blank"
rel="noopener noreferrer"><i class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/pandeyvishal724" target="_blank" rel="noopener noreferrer"><i
class="fa fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCArwtWBWC202PFBVUOwOjiw" target="_blank"
rel="noopener noreferrer"><i class="fa fa-youtube"></i></a>
<p class="intro">I am a front-end web developer, a java programmer, an aspiring android developer
and a
problem solver cunsultant coach which will solve your business growth related queries.
Along with that I am doing Bachelor's in Engineering in Computer Science Stream from
Chandigarh University.</p>
</div>
</div>
</div>
</div>
<footer class="footer">
<p>👉Disclaimer: These solutions are an approach of mine towards the problem, All your solutions are
heartly welcome. <br> ©Anyone can use it for educational purpose only.</p>
<p>❤ It's an open-source, and created by <a class="footer-link"
href="https://github.com/vishalps2606">Vishal Pandey</a> to
help fellow learners ❤</p>
</footer>
<!--Bootstrap JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
</body>
</html>