-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
199 lines (109 loc) · 4.33 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html >
<html>
<head>
<title>IT SOLUTION V.01</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/5e4e3cd377.js" crossorigin="anonymous"></script>
<link rel="icon" href="img/logo.png" type="image/png">
</head>
<body>
<!--NAv Bar-->
<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="#featuer">FRATURE
<ul class="sub">
<li><a href="#featuer">section1</a></li>
<li><a href="#featuer">section2</a></li>
</ul>
</a></li>
<li class="active"><a href="index.html" >HOME</a> </li>
</ul>
<!--end of NAv Bar-->
<header>
<!--header title-->
<div class="title-box">
<h1>IT ECOSYSTEM FOR MOVING <span>COMPANIES</span></h1>
</div>
</header>
<section class="service-sec">
<h2>Our Service :</h2>
<div class="Serv_icon_box">
<div>
<i class="fas fa-desktop big-icon"></i>
<h3>Advisory</h3>
<p>We conduct a thorough assessment and analysis to comprehend the needs and issues of our clients fully. </p>
</div>
<div >
<i class="fas fa-user-shield big-icon"></i>
<h3>IT-Optimization</h3>
<p>We conduct a thorough assessment and analysis to comprehend the needs and issues of our clients fully. </p>
</div>
<div>
<i class="fas fa-server big-icon"></i>
<h3>Network Communication</h3>
<p>We conduct a thorough assessment and analysis to comprehend the needs and issues of our clients fully. </p>
</div>
<div>
<i class="fas fa-fingerprint big-icon"></i>
<h3>Enterprise Security</h3>
<p>We conduct a thorough assessment and analysis to comprehend the needs and issues of our clients fully. </p>
</div>
</div>
</section>
<section class="section-featuerPro">
<h2 class="feat_Pro_title">Our Featuer Projects</h2>
<div class="info-mask">
<div class="info-box">
<span>SECURITY PROJECTS</span>
<h1>Firewall Internal Segmentation</h1>
<p>
Protect your infrastructure Segmentation of networks, devices, users, and applications has long,and applications has long.
</p>
</div>
</div>
</section>
<section class="section-partner">
<h2>Our Partner</h2>
<div class="partner-box">
<div>
<img src="img/Microsoft.png" alt="photo1">
</div>
<div>
<img src="img/veeam.png" alt="photo1">
</div>
<div>
<img src="img/VMWare.png" alt="photo1">
</div>
<div>
<img src="img/Fortinet.png" alt="photo1">
</div>
</div>
</section>
<!--footer-->
<footer id="featuer">
<div id="footer-section">
<div class="contact-part">
<h3>Contact</h3>
<p>+123456789</p>
<p>[email protected]</p>
</div>
<div class="contact-part">
<h3>BRANCH OFFICES</h3>
<p>Stockholm - Sweden</p>
</div>
<div class="contact-part">
<h3>Legal notices</h3>
<p>Legal warning</p>
<p>Privacy Policy</p>
</div>
</div>
</footer>
</body>
</html>