-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
83 lines (77 loc) · 2.92 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>About</title>
</head>
<body>
<div id="about-header">
<!--Navigation-->
<ul class="nav">
<li class="logo">
<!--the logo-->
<a href="index.html"><img src="img/logo.png" alt="logo" height="70px" width="70px">
</a>
</li>
<li><a href="contact.html">CONTACT US</a> </li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="index.html">FRATURE</a></li>
<li class="active"><a href="index.html">HOME</a> </li>
</ul>
</div>
<!--section1-->
<section id="section1">
<div class="office-pic">
<img class="office-picture" src="img/whoAreWe.jpg" alt="who-we-are">
</div>
<div class="who-we-are">
<h1>Who we are?</h1>
<h3>Great technology is alwaysbased on perfect relationships.</h3>
<p>We deliver high quality services through highly skilled technical consultants, providing the type of flexibility thatensures projects run smoothly.</p>
</div>
</section>
<!--section-2-->
<section id="section2">
<div class="descriptions">
<h2>Our Service</h2>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eum, in explicabo reiciendis id dolorum tempore distinctio fuga sed assumenda commodi!</p>
</div>
<div class="descriptions">
<h2>Our Promise</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Non, quod assumenda. Temporibus, cum! Fugiat aliquam asperiores, earum minima id amet.</p>
</div>
<div class="descriptions">
<h2>Our Vision</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Non, quod assumenda. Temporibus, cum! Fugiat aliquam
asperiores, earum minima id amet.</p>
</div>
<div class="descriptions">
<h2>Our Qualité</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Non, quod assumenda. Temporibus, cum! Fugiat aliquam
asperiores, earum minima id amet.</p>
</div>
</section>
<!--footer-->
<footer>
<div id="footer-section">
<div class="contact-part">
<h3>Contact</h3>
<p>+123456789</p>
<p>[email protected]</p>
</div>
<div class="contact-part">
<h3>Legal notices</h3>
<p>+123456789</p>
<p>[email protected]</p>
</div>
<div class="contact-part">
<h3>BRANCH OFFICES</h3>
<p>+123456789</p>
<p>[email protected]</p>
</div>
</div>
</footer>
</body>
</html>