-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (38 loc) · 1.98 KB
/
index.html
File metadata and controls
45 lines (38 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the page -->
<title>FAQ's with HTML and CSS | Saurav Chaturvedi </title>
<!-- External CSS file for styling -->
<link rel="stylesheet" href="assets/css/styles.css">
<!-- External library for icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="container-box">
<p class="checkout">Check Out Some</p>
<h1>Frequently Asked Questions</h1>
<p class="connectinfo">Providing quick solutions and information to users.</p>
<button class="accordion">What is HTML? <i class='bx bx-chevron-down'></i></button>
<div class="panel">
<p>HTML stands for Hyper Text Markup Language. It is the standard markup language for creating web pages.</p>
</div>
<button class="accordion">What are the basic components of HTML? <i class='bx bx-chevron-down'></i></button>
<div class="panel">
<p>The basic components of HTML are tags, attributes, and text content.</p>
</div>
<button class="accordion">What are some commonly used HTML tags? <i class='bx bx-chevron-down'></i></button>
<div class="panel">
<p>Some commonly used HTML tags include <div>, <p>, <h1> to <h6>, <a>, <img>, <ul>, <li>, etc.</p>
</div>
<button class="accordion">How can I create a hyperlink in HTML? <i class='bx bx-chevron-down'></i></button>
<div class="panel">
<p>To create a hyperlink in HTML, you can use the <a> tag with the href attribute. For example: <br> <br> <code> <a href="https://www.example.com">Link Text</a>. </code></p>
</div>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>