-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (123 loc) · 5.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>2KTech Solutions</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/logo.png" type="image/png" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
</head>
<body>
<div id="page-wrapper">
<header id="header">
<div class="logo">
<img id="header-img" src="images/logo.png" alt="2KTech Logo" />
</div>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#features">Features</a></li>
<li><a class="nav-link" href="#demo">Demo</a></li>
<li><a class="nav-link" href="#services">Services</a></li>
</ul>
</nav>
<div class="logo">
<img id="header-img" src="images/logo.png" alt="2KTech Logo" />
</div>
</header>
<div class="container"></div>
<section id="business">
<h2>Passionately created, Professional solutions</h2>
<form id="form" action="/">
<input name="email" id="email" type="email" placeholder="Enter your email address" required />
<input id="submit" type="submit" value="Get Started" class="btn" />
</form>
</section>
<div class="container">
<section id="features">
<div class="grid">
<div class="icon"><i class="fa fa-3x fa-fire"></i></div>
<div class="desc">
<h2>Latest & Greatest</h2>
<p>
We use the best tech possible to create the most robust and reliable solutions.
</p>
</div>
</div>
<div class="grid">
<div class="icon"><i class="fa fa-3x fa-truck"></i></div>
<div class="desc">
<h2>Fast Delivery</h2>
<p>
We know how important time is and we always deliver products on time.
</p>
</div>
</div>
<div class="grid">
<div class="icon">
<i class="fa fa-3x fa-battery-full" aria-hidden="true"></i>
</div>
<div class="desc">
<h2>Quality Assurance</h2>
<p>
All our products are tested for quality and performace so you can rest assured when
using them.
</p>
</div>
</div>
</section>
<section id="demo">
<iframe
id="video"
height="315"
src="https://www.youtube-nocookie.com/embed/l1zPM1Urh8Y?rel=0&controls=0&showinfo=0"
frameborder="0"
allowfullscreen
></iframe>
</section>
<section id="services">
<div class="product" id="web">
<div class="level">Web Solutions</div>
<ol>
<li>Website Development.</li>
<li>Web Design.</li>
<li>Web App Development.</li>
</ol>
<button class="btn">Select</button>
</div>
<div class="product" id="mobile">
<div class="level">Mobile Solutions</div>
<ol>
<li>Android Development.</li>
<li>IOS Development.</li>
<li>Platform Independent Development.</li>
</ol>
<button class="btn">Select</button>
</div>
<div class="product" id="desktop">
<div class="level">Desktop Solutions</div>
<ol>
<li>Windows Development.</li>
<li>Mac Development.</li>
<li>Linux Development.</li>
</ol>
<button class="btn">Select</button>
</div>
</section>
<footer>
<ul>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Contact</a></li>
</ul>
<span>Copyright 2020, 2KTech</span>
</footer>
</div>
</div>
</body>
</html>