-
Notifications
You must be signed in to change notification settings - Fork 80
/
index4.html
32 lines (31 loc) · 974 Bytes
/
index4.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
<!DOCTYPE html>
<html>
<head>
<title>Profile Card</title>
<link rel="stylesheet" type="text/css" href="style2.css">
<link rel="icon" href='favicon.png' type="image/png">
</head>
<body>
<div class="card-container">
<div class="upper-container">
<div class="image-container">
<img src="businesswoman.png" />
</div>
</div>
<div class="lower-container">
<div>
<h3>Priya Chandak</h3>
<h4>Btech CSE </h4>
</div>
<div>
<p>Let's connect for knowledge sharing
</p>
</div>
<div>
<a href="https://www.linkedin.com/in/priya-chandak-ba0a6b178/" class="btn">View profile</a>
<a href="contributor1.html" class="btn">Next</a>
</div>
</div>
</div>
</body>
</html>