-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
176 lines (162 loc) · 5.23 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
<!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" />
<link rel="stylesheet" href="stylish.css" />
<title>Stelgo</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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=Montserrat:wght@200&family=Poppins:wght@300&family=Raleway:wght@600&family=Sofia+Sans+Semi+Condensed:ital,wght@0,100;1,200&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- 1.header__________________________________ -->
<!-- 1.header__________________________________ -->
<header>
<ul>
<a href="index.html"><li>home</li></a>
<a href="#work_h"><li>work</li></a>
<a href="#services_h"><li>services</li></a>
<a href="#about"><li>about</li></a>
<a href="#contact"><li>contact</li></a>
</ul>
<h1>Stelgo</h1>
<img
src="./media/icons/three_v.png"
id="menu"
alt="..."
onclick="side_bar()"
/>
</header>
<!-- 2.introduction____________________________-->
<!-- 2.introduction____________________________-->
<div id="introduction">
<p>
<b>Stelgo,</b> <br />
We provides sevices in web devlopment<br />
and various other solutions with experts to fulfill your needs.<br />
benifit from our expertise and exprience<br />
the uniqueness and supply-driven solution through <b>stelgo</b>
</p>
<br />
<div id="small">
connect with our services and <br />
embark on a journey of digital<br />
growth with stelgo <a href="#services"><button>explore</button></a>
</div>
</div>
<!-- 2.1 side_bar____________________________-->
<!-- 2.1 side_bar____________________________-->
<div id="side_bar">
<ul>
<a href="index.html"
><li><img src="./media/icons/home.svg" alt="H" /></li
></a>
<a href="#work_h">
<li><img src="./media/icons/work.svg" alt="Q" /></li
></a>
<a href="#services_h">
<li><img src="./media/icons/services.svg" alt="$" /></li
></a>
<a href="#about">
<li><img src="./media/icons/about.svg" alt="@" /></li
></a>
<a href="#contact"
><li><img src="./media/icons/contact.svg" alt="/" /></li
></a>
<br />
<li>
<img
height="20px"
src="./media/icons/close.svg"
alt="X"
onclick="side_bar()"
/>
</li>
</ul>
</div>
<!-- 3.Main____________________________________-->
<!-- 3.Main____________________________________-->
<main>
<h1 style="color: #00000086" id="work_h">work</h1>
<div class="container" id="work">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
<h1 style="color: #2d4a5ab3" id="services_h">services</h1>
<div class="container" id="services">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</main>
<!-- 4.about__________________________________ -->
<!-- 4.about__________________________________ -->
<div id="about">
<div class="box">
<p>
"we are the best ,<br />
because we provided best <br />
services."
</p>
</div>
<div class="box">
<p>
"we work for you <br />
and believe me you are <br />
in right place"
</p>
</div>
</div>
<!-- 5.contact__________________________ -->
<!-- 5.contact__________________________ -->
<div id="contact">
<div class="c">
<ul>
<li>email : stelgoofficial@grmail.com</li>
<li>instagram : @ahsan_byte</li>
<li>twitter : stelgo@</li>
</ul>
</div>
<div class="c">
<ul>
<li>youtube: stelgo officail</li>
<li>instagram : stelgo skill</li>
<li>twitter : stelgo@</li>
</ul>
</div>
<div class="c">
<ul>
<li>email : mdahsanahmad@gmail.com</li>
<li>instagram : @ahsan_byte</li>
<li>twitter : stelgo@</li>
</ul>
</div>
</div>
<!--over page______________________ -->
<div id="over">
<p>
read carefully...............<br />
read carefully...............<br />
read carefully...............<br />
read carefully...............<br />
read carefully...............<br />
read carefully...............<br />
read carefully...............<br />
read carefully...............<br />
</p>
<form action=""></form>
</div>
<!-- scripting -->
<script src="index.js"></script>
</body>
</html>