-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServices.html
More file actions
110 lines (101 loc) · 4.31 KB
/
Copy pathServices.html
File metadata and controls
110 lines (101 loc) · 4.31 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
<!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>Aldaraz.com</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family-Josefin+Sans: ital, wght@0, 100;0, 300;0,400;0,500;0, 600;0,700;1, 100;1, 200;1, 300;1,400;1, 500;1, 600;1,700&family-Montserrat: wght@700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<!--Java Script Start Link-->
<script src="script.js"></script>
<!--Java Script End Link-->
<!--Navigation Bar-->
<div class="Nav" >
<nav>
<img src="./IMG/logo-nav.png" class="top-logo" alt="logo-main-page">
<div class="nav-list"><ul>
<li><a href="./Index.html">Home</a></li>
<li><a href="./Services.html">Services</a></li>
<li><a href="./Pricing.html">Pricing</a></li>
<li><a href="./Contact.html">Contact</a></li>
</ul></div>
<button type="button" onclick="openForm()" class="get-early-access">Get Early Access →</button>
</nav>
</div>
<!--Service Body-->
<div class="service_page">
<section class="section_top">
</section>
<img src="./IMG/Service.png" class="service_image" onclick="openForm()">
</div>
<!--Footer Section-->
<footer>
<div class="footer">
<div class="footer_containor">
<div class="footer_containor_top">
<img src="./IMG/Footer_logo.png">
<span class="footer_logo_next">Software Resource Marketplace</span>
</div>
<span class="footer_logo_end"><em class="footer_logo_end_num">5,243,793</em> certified & trusted customer base </span>
</div>
<hr class="hr1">
<div class="footer_containor_bottom">
<h2 class="footer_support">Services
<ul class="footer_support_list">
<li class="footer_support_list_item">Web Development</li>
<li class="footer_support_list_item">Mobile Development</li>
<li class="footer_support_list_item">Data Security</li>
<li class="footer_support_list_item">Cloud Services</li>
<li class="footer_support_list_item">Digital Marketing</li>
</ul>
</h2>
<h2 class="footer_support">Support
<ul class="footer_support_list">
<li class="footer_support_list_item">Contact us</li>
<li class="footer_support_list_item">Developers Docs</li>
<li class="footer_support_list_item">Help Center</li>
</ul>
</h2>
<h2 class="footer_social_media">Follow Us
<img src="./IMG/social media.png" width="100px" class="footer_social_media_list_item">
</h2>
<span class="footer_last_terms">© 2017-2022 All rights reserved <br><p class="footer_last_term_2"> Built with 💛 in India</p>
<div class="footer_last_button">
<button type="button" onclick="openForm()" class="get_start_button">Request Demo</button>
<div class="footer_last">
</span>
</div>
</div>
</div>
</div>
</footer>
<!--Pop up form-->
<div class="Popup_form">
<div class="formPopup" id="popupForm">
<form action="./Pricing.html" class="formContainer">
<h2 class="req_head">Request Form</h2>
<label for="Name">
<strong>Name</strong>
</label>
<input type="text" id="name" placeholder="Full Name" name="name" required>
<label for="Email">
<strong>Email<strong>
</label>
<input type="Email" id="email" placeholder="Email" name="email" required>
<label for="Mobile">
<strong>Mobile Number</strong>
</label>
<input type="text" id="mobile" placeholder="Mobile Number" name="mobile" required>
<label for="Requirement">
<strong>Requirement<strong>
</label>
<input type="text" id="req" placeholder="For example: Web Development" name="req" required>
<button type="submit" class="btn">Submit</button>
<button type="button" class="btn cancel" onclick="closeForm()">Close</button>
</form>
</div>
</div>