-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
103 lines (70 loc) · 4.97 KB
/
about.html
File metadata and controls
103 lines (70 loc) · 4.97 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153452594-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-153452594-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About me</title>
<!-- Typography -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700|Slabo+27px|Ubuntu:400,700&display=swap" rel="stylesheet">
<!-- font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<!-- Custom Css -->
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header class="header header-home grid-container">
<div class="header-content">
<a class="brand-logo-link" href="index.html">
<img src="img/raghuram2.png" alt="" class="logo">
</a>
<button class="open-navigation">☰</button>
<nav class="nav">
<button class="close-nav"> × </button>
<ul class="nav-list">
<li class="nav-item"><a href="index.html" class="nav-link">home</a></li>
<li class="nav-item"><a href="about.html" class="current nav-link">about me</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="main main-container grid-container ">
<h1 class="page-title">About me.</h1>
<p class="page-subtitle">I am basically from Navi Mumbai. I am involved in programming, teaching Math to Grade 9, Grade 10 across different curriculum.</p>
<img class="main-image" src="./img/conquer.jpg" alt="image">
<div class="main-content">
<h3 class="content-title">I'm a really great guy</h3>
<p class="content-body">For a while, I have been involved in preparation of country's top administrative services. In the process I have been in eternal learning mode keeping myself upto date with the current affairs especially of India</p>
<p class="content-body"> While I am in the learning mode, yet I love teaching making me involed in online and offline tutoring of Math. For some reason I love Math and also am involved in learning Engineering Maths once again. BTW I have been the topper of <span> Mumbai University</span> in Engineering Maths (100 / 100)</p>
<h3 class="content-title">I can do all sorts of great stuff </h3>
<p class="content-body">Learning has always been a fun. Though it takes my charge down sometimes but my innate desire to give my best makes me do the best. Playing badminton is my hobby, but am not limited to that sometimes if I don't understand what to do I do jogging.</p>
<p class="content-body">In the programming domain, I was involved in inhouse project(used by college) for my college that was based on Spring, Hibernate framework. Post my engineering, I had been working in TCS as Software Developer. Now back again I am in process of becoming a full stack developer. </p>
</div>
</main>
<footer class="footer grid-container">
<div class="brand-info">
<h1 class="brand-info-title"><img src="./img/raghuram2.png" alt=""></h1>
<p class="brand-info-body">If I have the belief that I can do it, I shall surely acquire the capacity to do it even if I may not have it at the beginning- MK Gandhi</p>
<p class="fine-print">©Raghuram 2019</p>
</div>
<div class="social-media">
<ul class="social-media-list">
<li class="social-media-item"><a class="sm-link" href="https://www.linkedin.com/in/raghurambachu/" target="_blank"><i class="fab fa-linkedin"></i></a> </li>
<li class="social-media-item"><a class="sm-link" href="https://github.com/raghurambachu" target="_blank"><i class="fab fa-github-square"></i></a></li>
<li class="social-media-item"><a class="sm-link" href="https://www.facebook.com/raghuram.r.bachu" target="_blank"><i class="fab fa-facebook-square"></i></a> </li>
<li class="social-media-item"><a class="sm-link" href="https://twitter.com/RaghuramBachu" target="_blank"><i class="fab fa-twitter-square"></i></a> </li>
</ul>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>