-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (137 loc) · 4.4 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Renu Yadav</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 36px;
font-weight: normal;
}
header h2 {
margin: 10px 0 0;
font-size: 24px;
font-weight: normal;
}
section {
padding: 50px;
background-color: #eee;
}
section h3 {
margin-top: 0;
font-size: 24px;
font-weight: normal;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
li {
margin-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: auto;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 800px;
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1>Renu Yadav</h1>
<h2>Senior Engineering Manager</h2>
<p>I'm passionate about problem solving in engineering and absolutely love maths.</p>
</header>
<section>
<div class="container">
<h3>Work Experience</h3>
<ul>
<li>
<strong>Grab (2016-Current)</strong><br>
Senior Engineering Manager leading an org to support Growth & GU
</li>
<li>
<strong>Dunzo (2016-2017)</strong><br>
Mobile Developer
</li>
<li>
<strong>Samsung/Snapdeal India</strong><br>
Java Developer
</li>
</ul>
</div>
</section>
<section>
<div class="container">
<h3>Public Speaking</h3>
<p>I love community speaking and learning. Here are some of my past conference talks:</p>
<ul>
<li>
<img src="https://www.appsconf.ru/wp-content/uploads/2018/05/mini_logo.png" alt="AppsConf Russia 2018 Logo" width="50" height="50">
<a href="https://www.appsconf.ru/2018/abstracts/3571">AppsConf Russia 2018</a>
</li>
<li>
<img src="https://mobileera.rocks/static/2019-0ecf130a996d17172f8c43bb0e55d10c.png" alt="Mobile Era Norway 2019 Logo" width="50" height="50">
<a href="https://mobileera.rocks/talks/renu-yadav">Mobile Era, Norway 2019</a>
</li>
</ul>
</div>
</section>
<section id="certifications" class="section">
<div class="container">
<h2>Certifications</h2>
<ul>
<li>
<img src="https://www.hbs.edu/PublishingImages/logo-harvard-business-school.png" alt="Harvard Business School">
<a href="https://online.hbs.edu/courses/management-essentials/">Harvard Business School - Management Essentials</a>
</li>
<li>
<img src="https://www.hbs.edu/PublishingImages/logo-harvard-business-school.png" alt="Harvard Business School">
<a href="https://www.hbs.edu/executive-education/courses/organizational-leadership/Pages/default.aspx">Harvard Business School - Organizational Leadership</a>
</li>
</ul>
</div>
</section>
<section id="contact" class="section">
<div class="container">
<h2>Contact</h2>
<ul>
<li>
<a href="https://github.com/RenuYadav">Github</a>
</li>
<li>
<a href="https://www.linkedin.com/in/renu-yadav/">LinkedIn</a>
</li>
</ul>
</div>
</section>
</body>
</html>