-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
163 lines (129 loc) · 5.37 KB
/
blog.html
File metadata and controls
163 lines (129 loc) · 5.37 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<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 demo</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 </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>BLOGS</h1>
</section>
<!--Blogs -->
<section class="blogs">
<div class="container blog">
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-5">
<img src="images/certificate.jpg" alt="certificate" class="card-img ">
</div>
<div class="col-md-7">
<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">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>
</div>
</div>
<div class="card-footer">
<p class="card-text ">
<small class="text-muted float-right ">Last updated 3 mins ago</small>
</p>
</div>
</div>
</div>
</div>
<!--Forms -->
<div class="container form">
<div class="col-mb-12" >
<div class="card">
<div class="card-header">
Contact Us
</div>
<div class="card-body">
<form action="" method="POST">
<div class="mb-3">
<label for="name" class="form-label">Full Name </label>
<input type="text" class="form-control" id="name" placeholder="Enter your Full Name ">
</div>
<div class="mb-3">
<label for="phone" class="form-label">Phone Number</label>
<input type="number" class="form-control" id="phone" placeholder="+91-6381574552">
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" name="email" class="form-control" id="email" placeholder="abcd@gmail.com">
</div>
<div class="mb-3">
<label for="comments" class="form-label"> Comments</label><br>
<textarea class="form-control" id="comments" rows="4" placeholder="Your Comments"></textarea>
</div><br>
<div class="mb-3">
<button type="submit" style="width: 100%; padding:10px; margin-top:40px;" class="btn btn-primary btn-block">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!--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>