-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.html
74 lines (68 loc) · 2.71 KB
/
aboutus.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
<!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" />
<title>About Us</title>
<!-- Including All the style sheets -->
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="media queries.css" />
<link rel="stylesheet" href="aboutus.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Including All the 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=Marck+Script&display=swap"
rel="stylesheet"
/>
<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=Courgette&display=swap" rel="stylesheet">
</head>
<body>
<!-- Editing the banner of Our Website -->
<div class="container">
<section class="banner">
<h1>DanceMastiClasses</h1>
</section>
</div>
<!-- //Adding the navigation Bar -->
<nav class="nav-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="aboutus.html">About Us</a></li>
</ul>
</nav>
<div class="about">
<p>
This is a website for a fictional website which is developed by
me(Abhinav Agarwal).<br />
I am a student and a full stack developer with a keen interest in<br />
web development.you can contact me through my social media handles which
are given below.
</p>
<h1 class="tech">Technologies used:-</h1>
<p class="technologies">html,css</p>
</div>
<div class="footer-sub">
<div class="desc">
<h1>Social Media Handles</h1>
</div>
<div class="social-media">
<!-- <a href="#" class="fa fa-facebook icon"></a> -->
<!-- <a href="#" class="fa fa-twitter icon"></a> -->
<a href="https://github.com/abhinav700" class="icon"><img src="github1.png" alt="image"> </a>
<a href="https://www.linkedin.com/in/abhinav-agarwal-08318b202" class="fa fa-linkedin icon"></a>
<a href="https://www.instagram.com/abhinav_agarwal700/" class="fa fa-instagram icon"></a>
</div>
</div>
<footer>©AllRightsReserved||DanceMastiClasses</footer>
</body>
<script src="index.js"></script>
</html>