-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (90 loc) · 3.29 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
<html>
<head>
<title>My site</title>
<link rel="stylesheet" href="index1.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.socials{
height: 10px;
display: flex;
justify-content: center;
align-content: center;
vertical-align: bottom;
padding: 350px;
}
.linkedin{
height: 100px;
width: 100px;
background-color: #f5f6fa;
border-radius: 50%;
text-align: center;
margin: 10px;
box-shadow: 1px 4px 2px 2px #dcdde1;
display: flex;
align-items: center;
justify-content: center;
}
.instagram{
height: 100px;
width: 100px;
background-color: #f5f6fa;
border-radius: 50%;
text-align: center;
margin: 10px;
box-shadow: 1px 4px 2px 2px #dcdde1;
display: flex;
align-items: center;
justify-content: center;
}
.facebook{
height: 100px;
width: 100px;
background-color: #f5f6fa;
border-radius: 50%;
text-align: center;
margin: 10px;
box-shadow: 1px 4px 2px 2px #dcdde1;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body class="container">
<div class="left">
<img class="profile" src="https://scontent-maa2-1.cdninstagram.com/v/t51.2885-19/281215065_164604926008314_6977128904275000640_n.jpg?stp=dst-jpg_s320x320&_nc_ht=scontent-maa2-1.cdninstagram.com&_nc_cat=106&_nc_ohc=6bBUc475UvgAX8ICOYF&edm=ABfd0MgBAAAA&ccb=7-4&oh=00_AT_AH1xSoH7g3VXi7J-2Q2iHvMGPon-oj7kPz5oiYU5AaA&oe=6288FB69&_nc_sid=7bff83" alt="profile image" />
<h1 class="name">Shivang Sharma</h1>
<p class="bio">
hello I am Shivang Sharma. I am currently pursuing my Bachelor of
Technology in Computer Science and Engineering from Indian Institute of
Information Technology ,Ranchi.
</p>
<button class="connect-button">Let's Connect</button>
</div>
<div class="right">
<div class="nav-container">
<h3>A bit about me</h3>
</div>
<p class="content">
I am currently learning web development. I have some experience with
python in past.
<br />
The field of machine learning is what I intend to explore next. I am
interested in technologies that add human values to machines.
<br />
Stay tuned as there is more to come.
<div class="socials">
<a href="https://www.facebook.com/shivang.sharma.16144" target="_blank" class="facebook">
<i class="fa-brands fa-2x fa-facebook-square"></i>
</a>
<a href="https://www.instagram.com/shivang1919/" target="_blank" class="instagram">
<i class="fa-brands fa-2x fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/shivang-sharma-443518224" target="_blank" class="linkedin">
<i class="fa-brands fa-2x fa-linkedin"></i>
</a>
</div>
</p>
</div>
</body>
</html>