-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
86 lines (85 loc) · 2.58 KB
/
faq.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="./faq.css" />
</head>
<body>
<div class="wrapper">
<div class="header-bg">
<div class="header">
<div class="logo">
<a href="./index.html"
><img src="/img/pngwing.com.png" alt="" />
<h1>Paralegal Element</h1></a
>
</div>
<ul class="list">
<li>services</li>
<li>
<a href="./team.html">team</a>
</li>
<li>
<a href="./career.html">career</a>
</li>
<li>
<a href="./reviews.html">reviews</a>
</li>
<li><a href="./news.html">news</a></li>
<li><a href="./contacts.html">contacts</a></li>
<li><a href="./faq.html">FAQ</a></li>
<li>eng/rus</li>
</ul>
</div>
</div>
<div class="faq-content">
<div class="container">
<h2>FAQ</h2>
<div class="faq-buttons">
<button>
<a href="">IMIGRATION FAQS</a>
</button>
<button>
<a href="">PERSONAL INJURY FAQS
</a>
</button>
<button>
<a href="">BUSINESS LAW FAQS</a>
</button>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="subscribe_block">
<div class="subscribe_cont">
<div class="left_part">
<h3>Be the first to know our news!</h3>
<p>Once a month, you will hear about our latest features and the hottest news</p>
<p>And no spam, of cource.</p>
</div>
<div class="right_part">
<div class="input">
<label for="emailInput"> Your email</label>
<input type="text" id="emailInput" />
<button>SUBSCRIBE</button>
</div>
</div>
</div>
</div>
<div class="footer_ìtems">
<p>I.S. Law Firm, PLLC</p>
<p>3930 Walnut St #200 Fairfax, VA 22030</p>
<p>(703) 527-1779</p>
<p>law@islawfirm.com</p>
<p>Opening Hours</p>
<p>Mon-Fri 9:30am-5:30pm</p>
</div>
</div>
</div>
</div>
</body>
</html>