-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTeam.html
84 lines (80 loc) · 3.75 KB
/
Team.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
About us
</title>
<link rel="stylesheet" href="Css/Team_stylesheet.css">
<script src="https://kit.fontawesome.com/a2e111ef51.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="header">
<div class="header-logo">
<img src="Img/lo.png" alt="icon">
<span>Blood Donation</span>
</div>
<div class="header-list">
<ul>
<a href="feedback.html"><li><i class="fas fa-headset"></i> Contact us</li></a>
<a href="Host-a-donation-drive.html"><li><i class="fas fa-hands-helping"></i> Support Us</li></a>
<a href="Team/Team.html"><li id="active"><i class="fas fa-user-alt"></i> About</li></a>
<a href="index.html"><li><i class="fas fa-home"></i> Home</li></a>
<a href="Login-page.html"><li><i class="fas fa-sign-in-alt"></i> Log In</li></a>
</ul>
</div>
</div>
<div class="teams-details">
<h1><i class="fas fa-user-alt"></i> About </h1>
<span class="border"></span>
<div class="person">
<img src="Img/owner.jpeg" alt="prince">
<span class="name"><span style="color: red;">P</span>rince <span style="color: red;">K</span>umar</span>
<a href="https://www.linkedin.com/in/prince-kumar-4573a0191?lipi=urn%3Ali%3Apage%3Ad_flagship3
_profile_view_base_contact_details%3BkbzrhvryRvehUb6EvyDJtA%3D%3D" id="linkedin"><i class="fab fa-linkedin"></i> Linkedin</a>
<a href="https://www.instagram.com/tera_prince_charming143/" id="instagram">
<i class="fab fa-instagram"></i> Instagram</a>
<a href="https://www.facebook.com/profile.php?id=100005350248717" id="facebook"><i class="fab fa-facebook-f"></i> Facebook</a>
<a href = "mailto: prince2kumar4147@gmail.com"id="email"><i class="fas fa-at" ></i> Email</a>
</div>
<div class="paragraph">
<p>This is the first paragraph. In printed text, paragraphs are traditionally rendered by merely breaking the flow of text to the next line and then indenting the first line of the
new paragraph. In web pages, however, a new paragraph is typically rendered by breaking the flow of text to the next line which then contains a line of 'white space'. The blank line
is subsequently followed by the new paragraph whose first line appears flush with the left margin.
</p>
<p>
This is the next paragraph. Note that any line breaks created in the source code by pressing the 'Enter' key will be ignored by the web browser when it displays the web page.
Creating line breaks in the visible text can only be accomplished by using one of various HTML elements. In this case, we are using the 'p' element.
</p>
</div>
</div>
<div class="footer">
<div class="footer-content">
<p> <big>Blood Donation Community</big><br>
<br>Blood Donation Community(BDC) is a division of New
<br>York Blood Center,Inc. a not-for-profit corporation.
<br>BDC has been saving lives in our communitiess since 1968 as an
<br>independent nonprofit blood center.</p>
<br>
<br>
<br>
<i class="far fa-copyright"></i> Blood Donation Community
</div>
<div class="Contact-us">
<p><big><i class="fas fa-map-marked-alt"></i> CONTACT US </big><br><br>
100 N. 84th Street<br>
Lincoln, NE 68505<br>
1-877-486-9414<br>
Contact Nebraska Community Blood Bank<br><p>
</div>
<div class="Get-connected">
<p><big><i class="fas fa-link"></i> GET CONNECTED</big><br><br>
<i class="fab fa-facebook"></i> Facebook<br>
<i class="fab fa-twitter"></i> Twitter<br>
<i class="fab fa-youtube"></i> YouTube<br>
<i class="fab fa-instagram"></i> Instagram<br></p>
</div>
<hr>
</div>
</body>
</html>