-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
84 lines (83 loc) · 2.58 KB
/
about.html
File metadata and controls
84 lines (83 loc) · 2.58 KB
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 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>Portfolio | About</title>
<!--Css-->
<link rel="stylesheet" href="about.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<header>
<nav>
<div class="left">
<img
src="images/computer-monitor-icon-on-black-background-black-vector-25959580.jpeg"
width="36px"
alt="logo"
/>
<a href="" id="a">Webers</a>
</div>
<div class="right">
<a href="index.html" id="b">Home</a>
<a href="about.html" id="c">About</a>
<a href="creations.html" id="d">Creations</a>
<a href="reviews.html" id="f">Reviews</a>
<a href="contact.html" id="e">Contact</a>
</div>
</nav>
<section class="mainimage">
<h5></h5>
</section>
</header>
<!--About Section-->
<section class="largest">
<h2>We are one of the largest group of developers across India</h2>
</section>
<!--Team-->
<h1 style="font-size: 65px;text-align: center;padding-top: 30px;padding-bottom: 30px;">Our Team</h1>
<section class="team">
<div class="team-info">
<h2 style="font-size: 55px;">Ayush Kumar</h2>
<p>
He is the CEO of Webers and he is the only one who came up with this
great idea and he is also such an amazing guy.
</p>
</div>
<div class="team-info">
<img src="images/Ayush-Ring-Road.jpeg" alt="CEO-image" />
</div>
</section>
<!--Follow Section-->
<div class="folow" style="text-align: center">
<h2
style="
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin-top: 75px;
"
>
Follow Us
</h2>
<nav>
<a href="https://www.facebook.com/profile.php?id=100039049863252" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/ayush80093/" class="fa fa-instagram"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</nav>
</div>
<!--Social-->
<footer>
<p>
© 2020-2050 Webers <br />
All Rights Reserved<br />
Privacy Policy | Terms Of Use
</p>
</footer>
</body>
</html>