-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (177 loc) · 5.67 KB
/
Copy pathindex.html
File metadata and controls
180 lines (177 loc) · 5.67 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moon Dev Solutions</title>
<link type="text/css" rel="stylesheet" href="css/style.css" />
<link type="content" />
</head>
<body>
<nav class="navbar navbar-fixed">
<ul class="navbar-list">
<li class="nav-item">
<a href="index.html">
<figure class="text-center">
<img src="images/moon-logo.png" alt="Moon logo" width="80px">
<figcaption>Dev Solutions</figcaption>
</figure>
</a>
</li>
<li class="nav-item">
<a href="#ourTopics">
Topics
</a>
</li>
<li class="nav-item">
<a href="#AboutUs">
About
</a>
</li>
<li class="nav-item">
<a href="#">
Contact
</a>
</li>
</ul>
<div class="search-bar">
<input class="rounded" type="text" placeholder="Search" />
<button class="primary-btn rounded">
Search
</button>
</div>
</nav>
<div class="banner">
<a href="#" rel="" target="_blank">
<strong>
The solution topics
<br>
for all your tech needs
</strong>
</a>
</div>
<div id="ourTopics" class="container text-center">
<h1 id="primary-color" class="text-center">
Our Topics
</h1>
<div class="our-topics">
<a href="blog-post.html" class="our-topics-cards topic-1-card text-center">
<p class="card-title">
<b>
Website services
</b>
</p>
</a>
<a href="#" class="our-topics-cards topic-2-card text-center">
<p class="card-title">
<b>
Digital Markting
</b>
</p>
</a>
<a href="#" class="our-topics-cards topic-3-card text-center">
<p class="card-title">
<b>
IT Support for Businesses
</b>
</p>
</a>
<a href="#" class="our-topics-cards topic-4-card text-center">
<p class="card-title">
<b>
Mobile Apps
</b>
</p>
</a>
</div>
</div>
<div id="AboutUs" class="container text-center">
<h1 id="primary-color">
About Us
</h1>
<h2>
Our highly passionate techies will get you covered
</h2>
<div class="about-us">
<div class="info-1">
<img src="images/on-request.png" alt="Available On-Request" width="50px" />
<h3 id="secondary-color">
Available On-Request
</h3>
<p>
Donec lectus lectus, dictum sed vehicula a, maximus ac dolor. Phasellus dignissim quam in mauris
volutpat ultrices.
</p>
<a href="#" id="primary-color">
Read more >>
</a>
</div>
<div class="info-2">
<img src="images/world-wide-services.png" alt="World Wide Services" width="50px" />
<h3 id="secondary-color">
World Wide Services
</h3>
<p>
Donec lectus lectus, dictum sed vehicula a, maximus ac dolor. Phasellus dignissim quam in mauris
volutpat ultrices.
</p>
<a href="#" id="primary-color">
Read more >>
</a>
</div>
<div class="info-3">
<img src="images/certified.png" alt="Certified Techies" width="50px" />
<h3 id="secondary-color">
Certified Techies
</h3>
<p>
Donec lectus lectus, dictum sed vehicula a, maximus ac dolor. Phasellus dignissim quam in mauris
volutpat ultrices.
</p>
<a href="#" id="primary-color">
Read more >>
</a>
</div>
</div>
</div>
<footer class="footer">
<a href="index.html">
<figure class="text-center">
<img src="images/moon-logo.png" alt="Moon logo" width="80px">
<figcaption>Dev Solutions</figcaption>
</figure>
</a>
<ul class="navbar-list padding-none">
<li class="nav-item">
<a href="#ourTopics">
<u>
Topics
</u>
</a>
</li>
<li class="nav-item">
<a href="#AboutUs">
<u>
About
</u>
</a>
</li>
<li class="nav-item">
<a href="#">
<u>
Contact
</u>
</a>
</li>
</ul>
<p class="copy-right">
<u>
© Copyright 2021.
<a href="index.html">Moon Dev Solutions</a>
</u>
</p>
</footer>
</body>
</html>