-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
146 lines (122 loc) · 5.5 KB
/
faq.html
File metadata and controls
146 lines (122 loc) · 5.5 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
<!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>FAQ</title>
<link rel="stylesheet" href="./src/css/tail.css">
<link rel="stylesheet" href="./src/css/icofont.min.css">
<link rel="stylesheet" href="./src/OwlCarousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="./src/OwlCarousel/assets/owl.theme.default.css">
<link rel="stylesheet" href="./src/css/main.css">
</head>
<body>
<div class="faqWrapper">
<header class="nav">
<input type="checkbox" id="checkbox" class="close">
<div class="logo">
<img src="./src/img/logo.png" alt="">
<span class="Hamburger">
<label for="checkbox">
<i class="icofont-navigation-menu"></i>
</label>
</span>
</div>
<nav class="navbar">
<div class="ul-mobile">
<span class="close">
<label for="checkbox">
<i class="icofont-close-line"></i>
</label>
</span>
<ul class="navlinks-mobile">
<li>
<a href="./index.html" class="nav-mobile">HOME</a>
</li>
<li>
<a href="./about.html" class="nav-mobile">ABOUT</a>
</li>
<li>
<a href="./blog.html" class="nav-mobile">BLOG</a>
</li>
<li>
<a href="./faq.html" class="nav-mobile">FAQ</a>
</li>
<li>
<a href="./contact.html" class="nav-mobile">CONTACT</a>
</li>
</ul>
<div class="social-links">
<a href="https://www.facebook.com/emmanuel.luis.102/" target="_blank"><i class="icofont-facebook"></i></a>
<a href="https://twitter.com/DevemmyM?t=bgKgurjRnUcRF6aKQhFuKw&s=09" target="_blank"><i class="icofont-twitter"></i></a>
<a href="https://wa.me/2348075771245" target="_blank"><i class="icofont-whatsapp"></i></a>
</div>
</div>
</nav>
</header>
<section id="aboutHead">
<h2>FAQ</h2>
<div class="homeAbout">
<div>
<a href="./index.html"><h4 class="home">Home</h4></a>
<span>||</span>
<h4 class="about">FAQ</h4>
</div>
</div>
</section>
<section id="questions">
<div class="questionsWrapper">
<div class="faq-list-section">
<div class="faq-list-single-item">
<div class="num">01.</div>
<div class="content">
<h4 class="title">What is UI/UX Design?</h4>
<p>UX design refers to the term “user experience design”, while UI stands for “user interface design”. Both elements are crucial to a product and work closely together in building user experience and interface of products .</p>
</div>
</div>
<div class="faq-list-single-item">
<div class="num">02.</div>
<div class="content">
<h4 class="title">How much do you charge to build .... website or app?</h4>
<p>Project that i manage fully do not have a fixed price they depend on the feature of software you want to build you can contact me to start </p>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="contactInfo">
<div class="icon">
<i class="icofont-phone"></i>
</div>
<div class="info">
<p>+234 812 551 0572</p>
</div>
</div>
<div class="contactInfo">
<div class="icon">
<i class="icofont-envelope-open"></i>
</div>
<div class="info">
<p>info@devemmy.tech</p>
</div>
</div>
<div class="social-links">
<a href="https://www.facebook.com/emmanuel.luis.102/" target="_blank"><i class="icofont-facebook"></i></a>
<a href="https://twitter.com/DevemmyM?t=bgKgurjRnUcRF6aKQhFuKw&s=09" target="_blank"><i class="icofont-twitter"></i></a>
<a href="https://wa.me/2348075771245" target="_blank"><i class="icofont-whatsapp"></i></a>
</div>
<div class="footerImg">
<img src="./asset/img/logo.png" alt="">
<h3><spans>© 2022</span> DEVEMMY</h3>
</div>
</footer>
</div>
<script src="./src/js/jquery-3.6.0.min.js"></script>
<script src="./src/js/scrollreveal.js"></script>
<script src="./src/js/vanilla-tilt.js"></script>
<script src="./src/OwlCarousel/owl.carousel.min.js"></script>
<script src="./src/js/index.js"></script>
</body>
</html>