-
Notifications
You must be signed in to change notification settings - Fork 10
/
profile.html
124 lines (104 loc) · 5.84 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
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Acme&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cabin&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,400,700,800" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="css/jquery.timepicker.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/profile_style.css">
</head>
<body style="background-image: url(images/platelets4.jpg);height: 700px;width: 100%">
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light m-1 p-1" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="index.html"> Blood Bank <i class="icon-heart" aria-hidden="true"></i></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="posts.html" class="nav-link">Posts</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="profile.html" class="nav-link"><span>Profile</span></a></li>
<li class="nav-item"><a href="profile.html" class="nav-link"><span>Profile</span></a></li>
<li class="nav-item"><a href="login.html" class="nav-link"><span>Login</span></a></li>
<li class="nav-item cta"><a href="register.html" class="nav-link"><span>Sign up</span></a></li>
</ul>
</div>
</div>
</nav>
<!-- END nav -->
<div class="container pt-5 prof mt-5">
<div class="row d-flex justify-content-center">
<div class="col-lg-2 col-md-4 col-sm-4 col-6">
<div class="profile-pic">
<img class="img-fluid rounded-circle prof-img" src="images/profile3.jpg" >
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-5 left-side ">
<div class="info">
<h3 class="pb-2 ml-3">Personal Info:</h3>
<p><span>Name :</span> Ahmed Ali</p>
<p><span>Age :</span> 25</p>
<p><span>Phone :</span> 01177788991</p>
<p><span>City :</span> Cairo</p>
<p><span>Blood Type :</span> A</p>
<p><span>Last Donation Date :</span> 12/1/2020</p>
</div>
</div>
<div class="offset-md-2"> </div>
<div class="col-md-5 col-sm-12 bg-light p-4 right-side ">
<div class="posts p-4">
<h3 class="mb-4">Posts</h3>
<div class="post-unit">
<p>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<div class="post-unit">
<p>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<div class="post-unit">
<p>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<div class="post-unit">
<p>
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<section style="background-image: url(platelets4.jpg);height: 700px;width: 100%">
</section> -->
<script>
var cw = $('.col-md-2').width();
$('prof-img').css({'height':cw+'px','width':cw+'px'});
</script>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
</body>
</html>