-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
127 lines (109 loc) · 5.18 KB
/
about.html
File metadata and controls
127 lines (109 loc) · 5.18 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
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
125
126
127
<!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>skct about</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="Assests/css/bootstrap.min.css">
<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=Catamaran:wght@200;300;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class=" sub-header">
<nav class="navbar" >
<a href="index.html"><img src="images/svg.png" style="width:115px; padding:10px;"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html"> HOME </a></li>
<li><a href="about.html"> ABOUT </a></li>
<li><a href=""> COURSE </a></li>
<li><a href="blog.html" > BLOG </a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" style="margin-right:10px; color:white;">
DROP DOWN
</a>
<ul class="dropdown-menu" style="margin-right: 10px;">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something </a></li>
</ul>
</li>
</ul>
</div>
<i class="fa fa-bars bar" onclick="showMenu()"></i>
</nav>
<h1>ABOUT US</h1>
<br><br>
</section>
<section class="aboutus">
<div class="container about">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4">
<img src="https://cdn.pixabay.com/photo/2017/08/26/23/37/business-2684758__340.png" alt="certificate" class="card-img ">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">
<span class="badge badge-pill mb-3" style="background-color: blue;"> Web-Development</span>
</p>
<p class="card-text" style="font-size: 22px;">This is a wider card with supporting text below as a natural lead-in to additional content.
This content is a little bit longer. <p style="font-size: 18px;"> Lorem, ipsum dolor sit amet consectetur adipisicing elit. Assumenda corrupti ipsa aliquid cumque eos eaque voluptatem in rerum aliquam saepe
molestiae maxime fuga atque, adipisci cum minima autem, illo veritatis! Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea provident deleniti nihil cupiditate,
recusandae voluptates sit id, autem a tempora facilis accusamus maiores? Et laudantium fugit repellat. Nemo, maxime explicabo.</p> </p>
</div>
</div>
</div>
</div>
</div>
<div class="container link">
<div class="col-mb-12" >
<div class="card">
<div class="card-body">
<ul class = "links">
<li><a href = "#">work</a></li>
<div class = "vertical-line"></div>
<li><a href = "./service.html">service</a></li>
<div class = "vertical-line"></div>
<li><a href = "./contact.html">contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<br>
<!--Footer -->
<section class="footer">
<h4>About Us</h4>
<p style="font-size:17px ; font-weight:500">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Labore eligendi incidunt iure. Veritatis eius
repellendus nemo deleniti quas dicta maiores laudantium magni <br> eligendi voluptatem iure at adipisci similique, iste nobis.</p>
<div class="icons">
<i class="fa fa-facebook" ></i>
<i class="fa fa-twitter" ></i>
<i class="fa fa-instagram" ></i>
<i class="fa fa-linkedin" ></i>
</div>
<p style="font-weight:550 ;">Made with<i class="fa fa-heart-o" ></i>by SDcorps</p>
</section>
<!-- Boot Strap -->
<script src="./Assests/js/jQuery.min.js"></script>
<script src="./Assests/js/bootstrap.min.js"></script>
<!-- Java-Script for Toggle Menu-->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right="0";
}
function hideMenu(){
navLinks.style.right="-200px";
}
</script>
</body>
</html>