-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 792 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 792 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>User Profile Card Design | Rustcode</title>
<!-- <link rel="stylesheet" type="text/css" href="style.css"> -->
</head>
<body>
<div class="card-container">
<div class="img-container">
<img src="hero.jpg">
</div>
<div class="content">
<div class="card-details">
<h3>Robert Downey Jr</h3>
<h4>Web Developer</h4>
<ul class="social-media-links-container">
<li><a href=""><i class="fab fa-twitter"></i></a></li>
<li><a href=""><i class="fab fa-linkedin-in"></i></a></li>
<li><a href=""><i class="fab fa-facebook-f"></i></a></li>
</ul>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script>
</body>
</html>