-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio || Mohammad Tamim Ahmed</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<div class="cover" id="cover">
<div class="max-width">
<img src="images/cover/cover_pic.jpg" alt="">
</div>
</div>
<div class="profile" id="profile">
<img src="images/profile/profile_pic.jpg" alt="">
</div>
<div class="info">
<h1 class="profile_title">Mohammad Tamim Ahmed</h1>
<p class="profile_designation">Web Developer</p>
</div>
<div class="update_area">
<a href="#" title="Edit Profile" class="profile_edit">Edit Profile <i class="fas fa-user-edit"></i></a>
<a href="#" title="Add Story" class="add_story">Add Story <i class="fas fa-plus-circle"></i></a>
</div>
<div class="buttons">
<a href="#" id="plus"><i class="fas fa-user-plus"></i> Friend Request</a>
<a href="#" id="wifi"><i class="fas fa-wifi"></i> Follow</a>
<a href="#" title="Friend Request" id="plus2"><i class="fas fa-user-plus"></i></a>
<a href="#" title="Follow" id="wifi2"><i class="fas fa-wifi"></i></a>
<i class="fas fa-ellipsis-v"></i>
</div>
</header>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>