-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (85 loc) · 2.83 KB
/
index.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
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title> Dot</title>
<link rel="icon" href="assets/icons/favicon.png"/>
<link rel="stylesheet" href="assets/css/style.css"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- Header start -->
<header>
<section class="overlay">
<!-- Nav start -->
<nav>
<section class="nav-inner">
<ul>
<li class="logo"> <a href="index.html"> Dot </a> </li>
<li> <a href="index.html"> HOME </a> </li>
<li> <a href="faq.html"> FAQ </a> </li>
<li> <a href="contact.html"> CONTACT </a> </li>
<li> <a href="inner.html"> INNERPAGE </a> </li>
</ul>
</section>
</nav>
<!-- Nav end -->
<!-- Banner Text start -->
<section class="banner-inner">
<h1> Support Center & Knowledge base </h1>
<p> Find advice and answers from our support team fast or get in touch </p>
<form>
<input type="text" placeholder="Have a question? Just ask here or enter terms">
<button>
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</form>
</section>
<!-- Banner Text end -->
</section>
</header>
<!-- Header end -->
<!-- Main Body start -->
<main>
<section>
<h2>Find your answer by subject</h2>
<section class="answer">
<ul>
<li> <i class="fa-solid fa-sliders"></i>
<h3>Installation</h3>
<p>It is a long established fact that a reader will be distracted by the readable.</p>
</li>
<li> <i class="fa-solid fa-credit-card"></i>
<h3>Billing & Pricing</h3>
<p>It is a long established fact that a reader will be distracted by the readable.</p>
</li>
<li> <i class="fa-solid fa-cube"></i>
<h3>Features</h3>
<p>It is a long established fact that a reader will be distracted by the readable.</p>
</li>
</ul>
</section>
<section class="lower-main">
<section class="contact">
<h3> Didn’t find an answer to your question? </h3>
<p> Musce libero nunc, dignissim quis turpis quis, semper vehicula dolor. Suspendisse tincidunt consequat quam.</p>
<button> <a href="contact.html"> CONTACT </a> </button>
</section>
</section>
</section>
</main>
<!-- Main Body end -->
<!-- footer start -->
<footer>
<section class="footer-inner">
<ul>
<li class="copy"> Copyright © 2023 Designed and Developed by<a href="index.html">FLASH⚡</a> </li>
<li> <a href="index.html"> <i class="fa-brands fa-facebook-f"></i> </a> </li>
<li> <a href="index.html"> <i class="fa-brands fa-twitter"></i> </a> </li>
<li> <a href="index.html"> <i class="fa-solid fa-hashtag"></i> </a> </li>
<li> <a href="index.html"> <i class="fa-brands fa-linkedin"></i> </a> </li>
</ul>
</section>
</footer>
<!-- footer end -->
</body>
</html>