-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
127 lines (117 loc) · 6.64 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/register.css">
<link rel="stylesheet" href="css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;700;800;900&display=swap"
rel="stylesheet">
</head>
<body class=" bg-secondary bg-opacity-10">
<header>
<nav class="navbar py-2 shadow bg-white">
<div class="container justify-content-center">
<a class="navbar-brand fs-1 position-relative" style="font-weight: 800;"
href="index.html">Selling</a>
</div>
</nav>
</header>
<style>
.title::before {
content: "";
position: absolute;
width: 60%;
height: 3px;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
background-color: var(--primary);
}
</style>
<div class="container my-5 ">
<div class="row gy-5">
<div class="col-lg-4 pe-4">
<div class="text-center bg-white p-3 shadow rounded">
<img id="profileImage" class="img-fluid rounded-circle" style="aspect-ratio: 1/1;" alt="">
<h2 class="fw-bold" id="name"></h2>
<p class="fw-bold text-secondary" id="email"></p>
</div>
</div>
<div id="productsContainer" class="col-lg-8 p-3 rounded border shadow bg-white">
</div>
</div>
</div>
<footer>
<div class="bg-black py-5">
<div class="container-lg">
<div class="row text-white gy-5">
<div class="col-lg-3 col-md-6 ">
<h3 class="fw-bold foot-title position-relative fs-1 " style="width: fit-content;">Selling </h3>
<p class="pt-2 opacity-75">Lorem ipsum dolor sit amet consectetur adipisicing elit. Neque facere
laudantium magnam voluptatum autem. Amet aliquid
nesciunt veritatis aliquam.</p>
<i style="padding: 10px 11px; font-size: 15px; background-color: var(--primary);"
class=" icon rounded-circle fab fa-facebook-f"></i>
<i class="p-2 icon rounded-circle fab fa-twitter" style="background-color: var(--primary);"></i>
<i class="p-2 icon rounded-circle fab fa-google" style="background-color: var(--primary);"></i>
<i class="p-2 icon rounded-circle fab fa-instagram"
style="font-size: 17px; background-color: var(--primary);"></i>
</div>
<div class="col-lg-2 col-6 ">
<h4 class="fw-bold">Offers</h4>
<p class="text opacity-75 pt-4" style="font-size: 15px;"><i
class="fas fa-angle-right fa-fw fs-5"></i> Proberties</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Agents</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Locations</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Clients Support</p>
</div>
<div class="col-lg-2 col-6 ">
<h4 class="fw-bold">Company</h4>
<p class="text opacity-75 pt-4" style="font-size: 15px;"><i
class="fas fa-angle-right fa-fw fs-5"></i> Company</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
About</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Blog</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Contact Us</p>
</div>
<div class="col-lg-2 col-6 ">
<h4 class="fw-bold">Quick Links</h4>
<p class="text opacity-75 pt-4" style="font-size: 14px;"><i
class="fas fa-angle-right fa-fw fs-5"></i> Terms & Condations</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
User's Guide</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Support Center</p>
<p class="text opacity-75" style="font-size: 15px;"><i class="fas fa-angle-right fa-fw fs-5"></i>
Press Info</p>
</div>
<div class="col-lg-3 col-6 ">
<h4 class="fw-bold">Have a Question?</h4>
<div class="d-flex gap-3 pt-4 ">
<i class="fas fa-map" style="color: var(--primary);"></i>
<p class="opacity-75 "> 203 Fake St. Mountain View, San Francisco, California, USA</p>
</div>
<div class="d-flex gap-3 ">
<i class="fas fa-phone-alt fa-fw" style="color: var(--primary);"></i>
<p class="opacity-75"> +2 392 3929 210</p>
</div>
<div class="d-flex gap-3 ">
<i class="fas fa-envelope fa-fw" style="color: var(--primary);"></i>
<p class="opacity-75"> [email protected]</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="js/profile.js"></script>
</body>
</html>