-
Notifications
You must be signed in to change notification settings - Fork 37
/
about.html
118 lines (103 loc) · 4.34 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./about.css" />
<!--Linking Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Young+Serif&display=swap" rel="stylesheet">
<!-- Linking BootStrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- Linking Script -->
<script
defer
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles.css" />
<script src="./aboutScript.js"></script>
<title>About | SocialHub</title>
</head>
<body>
<section>
<header>
<nav id="mainNavbar" class="navbar navbar-expand-lg navbar-light fixed-top">
<a class="navbar-brand" href="./">Social Hub</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="index.html">Home</a>
<a class="nav-item nav-link" href="about.html"> About</a>
<a class="nav-item nav-link" href="contact.html">Contact</a>
</div>
</div>
</nav>
</header>
</section>
<div class="about">
<main>
<h1 class="heading">About Us-</h1>
<div class="aboutinfo">
<p>
Welcome to SocialHub, an open-source project with a simple yet
powerful goal: to create innovative "About Me" pages that foster
meaningful connections among users. 😃 <br />
<ul>
<li>
This repository aims to help code beginners with their first
successful pull request and open source contribution. 🤝: 🚀
</li>
<li>
Feel free to use this project to make your first contribution to an
open-source project on GitHub. Practice making your first pull
request to a public repository before doing the real thing! 🚀
</li>
<li>
Make sure to grab amazing knowledge during Hacktoberfest by getting
involved in the open-source community. This repository is open to
all members of the GitHub community. Any member can contribute to
this project! ❤️
</li>
</ul>
</p>
</div>
</main>
</div>
<footer>
<div class="footer-content">
<h3>SocialHub</h3>
<p>
Connecting Friends and Family through Personalized About
Pages.
</p>
<div class="socials">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
<a href="#"><i class="fa fa-linkedin-square"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 SocialHub. All rights reserved.</p>
</div>
</footer>
</body>
</html>