-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (98 loc) · 4.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Udevs.io</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/footer.css">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="icon" href="./img/title_icon.png" type="image/png">
<script src="https://kit.fontawesome.com/49fa42a8c7.js" crossorigin="anonymous"></script>
</head>
<body>
<!--------header---->
<header>
<a href="https://udevs.io/" class="logo"><img src="./img/logo.svg"></a>
<div class="bx bx-menu" id="menu-icon"></div>
<ul class="navlist">
<li><a href="./index.html">Home</a></li>
<li><a href="./html/about.html">About</a></li>
<li><a href="./html/portfolio.html">Portfolio</a></li>
<li><a href="./html/service.html">Service</a></li>
<li><a href="./html/work.html">Extra</a></li>
<li><a href="./html/contact.html">Contact</a></li>
</ul>
</header>
<!--------home---->
<section class="home" id="home">
<div class="home-text">
<img src="./img/logo.svg" alt="logo" class="logo">
<h5>IT Outsourcing company <span>doing the impossible</span></h5>
<p>We can teach you how to hack NASA with HTML <br> you do not even need JS</p>
<div class="social">
<a href="#"><i class="fa-brands fa-facebook"></i></i></a>
<a href="#"><i class='fa-brands fa-twitter' ></i></a>
<a href="#"><i class='fa-brands fa-linkedin' ></i></a>
<a href="#"><i class='fa-brands fa-behance' ></i></a>
</div>
<a href="./contact-alternative.html" class="btn">Contact</a>
</div>
<div class="home-img">
<img src="./img/main.svg">
</div>
</section>
<!--------ends---->
<footer class="footer">
<div class="fo-container">
<div class="footer-row">
<div class="footer-col">
<h4>About us</h4>
<ul>
<li><a href="#">Direction</a></li>
<li><a href="#">Command</a></li>
<li><a href="#">Tools</a></li>
<li><a href="#">Clients</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Services</h4>
<ul>
<li><a href="#">Development of mobile applications</a></li>
<li><a href="#">Development and implementation ERP systems</a></li>
<li><a href="#">User interface, User experience design</a></li>
<li><a href="#">IT consulting</a></li>
<li><a href="#">Optimization IT consulting infrastructure</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Portfolio</h4>
<ul>
<li><a href="#">Delever</a></li>
<li><a href="#">Sms.uz</a></li>
<li><a href="#">Goodzone</a></li>
<li><a href="#">Iman</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</footer>
<script src="https://unpkg.com/scrollreveal"></script>
<!--------linking JS---->
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>