-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
53 lines (35 loc) · 1.67 KB
/
profile.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
<!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">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<title>APP CONCEPT</title>
</head>
<body>
<div class="container">
<img class="profile-img" src="https://images.pexels.com/photos/614810/pexels-photo-614810.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="">
</div>
<div class="container-content">
<p class="title">Jhon Doe Emmerson</p>
<p class="subtitle">Web Developer </p>
<p class="content">I Love Working on projects whit HTML5, CSS3 and Javascript.</p>
</div>
<div class="container">
<button class="contact-btn" type="">Contact Me</button>
</div>
<!--Navigation Bar Footer-->
<div class="footer">
<div class="navigation-bar">
<a class="home" href="index.html"><i class="fas fa-home fa-2x"></i></a>
<a class="search" href="search.html"><i class="fas fa-search fa-2x"></i></a>
<a class="new" href="new.html"><i class="fas fa-plus fa-2x"></i></a>
<a class="navigate" href="navigate.html"><i class="fas fa-compass fa-2x"></i></a>
<a class="profile" href="profile.html"><i class="fas fa-user fa-2x"></i></a>
</div>
</div>
<script src="https://use.fontawesome.com/473b36b43a.js"></script>
</body>
</html>