-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (83 loc) · 3.18 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 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>Static-webpage</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h2><a href="#">Sahar</a></h2>
<nav>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</nav>
</header>
<main>
<section class="banner-area">
<div class="banner-img"></div>
<h1>Static webpage</h1>
<h3>Responsive Web Design</h3>
<a href="#" class="banner-btn">Contact us</a>
</section>
<section class="about-area" id="about">
<h3 class="section-title">About-Us</h3>
<ul class="about-content">
<li class="about-left"></li>
<li class="about-right">
<h2>About our Company</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem esse pariatur necessitatibus
repellat quasi perferendis nihil laudantium illum nesciunt distinctio.</p>
<a href="#" class="about-btn">Learn more</a>
</li>
</ul>
</section>
<section class="services-area" id='services'>
<h3 class="section-title">Services</h3>
<ul class="services-content">
<li>
<i class="fa fa-laptop"></i>
<h4>Web Design</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa, tempora!</p>
</li>
<li>
<i class="fa fa-signal"></i>
<h4>Marketing</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa, tempora!</p>
</li>
<li>
<i class="fa fa-image"></i>
<h4>Graphics</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa, tempora!</p>
</li>
</ul>
</section>
<section class="contact-area" id="contact">
<h3 class="section-title">Contact</h3>
<ul class="contact-content">
<li>
<i class="fa fa-map-marker-alt"></i>
<p>Az-Zarqa <br>Jordan</p>
</li>
<li>
<i class="fa fa-phone"></i>
<p>+962 793 456 999<br>+962 786 159 682</p>
</li>
<li>
<i class="fa fa-envelope"></i>
<p>info@sahar.com <br>Saharzahran@website.com</p>
</li>
</ul>
</section>
<footer>
<p>All Right Reserved Saharzahran.com</p>
</footer>
</main>
</body>
</html>