-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>Charul Singhvi</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {
box-sizing:border-box;
}
.left {
background-color:whitesmoke;
padding:5%;
float:left;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 10ch;
margin: 10%;
width:30%; /* The width is 20%, by default */
}
.main {
background-color:#030303f3;
border-radius: 4px;
padding:2%;
float:left;
margin-top: 10%;
width:24%; /* The width is 60%, by default */
}
/* Use a media query to add a break point at 800px: */
@media screen and (max-width:800px) {
.left, .main {
width:100%; /* The width is 100%, when the viewport is 800px or smaller */
}
}
</style>
</head>
<body>
<div class="left">
<div style="display:inline-block">
<div class="card text-white bg-info mb-3" style="max-width: 30rem;">
<div class="card-header card text-center">Charul Singhvi</div>
<div class="card-body">
<h5 class="card-title">Developer</h5>
<p class="card-text">A web developer engaged in development of applications, learner of data anaytics.</p>
</div>
</div>
</div>
<div>
<i class="fa fa-google-plus-square" style="font-size:48px"></i>
<a href="https://www.linkedin.com/in/charul-singhvi-547882147" target="_blank"><i class="fa fa-linkedin-square" style="font-size:48px"></i></a>
<i class="fa fa-instagram" style="font-size:48px"></i>
<i class="fa fa-facebook" style="font-size:48px"></i>
</div>
</div>
<div class="main">
<div class="card-deck">
<img src="charul2.png" style="border-radius: 10px;">
</div>
</div>
</body>
</html>