-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (143 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webtrex IT</title>
<meta name="description" content="Digital transformation, software development and consultancy."/>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f8f9fa;
}
header {
background-color: #fff;
color: rgb(12, 35, 64);
padding: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
}
header .logo {
font-size: 1.5rem;
font-weight: bold;
}
header nav {
display: flex;
gap: 20px;
}
header nav a {
color: rgb(12, 35, 64);
text-decoration: none;
font-size: 1rem;
}
header nav a:hover {
text-decoration: underline;
}
.hero {
text-align: center;
padding: 100px 20px;
background-color: #e9e9e9;
color: rgb(12, 35, 64);
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 40px;
}
.hero button {
background-color: #fff;
color: #4a90e2;
border: none;
padding: 10px 20px;
font-size: 1.2rem;
cursor: pointer;
border-radius: 5px;
}
.hero button:hover {
background-color: #e1e1e1;
}
.thumbnail-banner {
background-color: rgb(12, 35, 64);
padding: 20px 0;
}
.thumbnails {
display: flex;
justify-content: center;
gap: 20px;
margin: 0 auto;
}
.thumbnails a {
display: block;
width: 100px;
height: 100px;
background-color: #ddd;
border-radius: 10px;
overflow: hidden;
text-decoration: none;
}
.thumbnails a img {
width: 100%;
height: 100%;
object-fit: cover;
}
.content {
padding: 50px 20px;
text-align: center;
}
.content h2 {
font-size: 2rem;
margin-bottom: 20px;
}
.content p {
font-size: 1.2rem;
margin-bottom: 20px;
color: #333;
}
footer {
background-color: #fff;
color: rgb(12, 35, 64);
text-align: center;
padding: 20px 50px;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<div class="logo">Webtrex IT</div>
<nav>
<a href="#"><strong>Home</strong></a>
<!-- <a href="#">About</a> -->
<!-- <a href="#">Services</a> -->
<!-- <a href="#">Contact</a> -->
<a href="https://www.linkedin.com/company/webtrex-it">LinkedIn</a>
</nav>
</header>
<section class="hero">
<h1>Digital transformation, software development and consultancy</h1>
<!--
<p>Software development and consultancy</p>
-->
<!-- <button>Learn More</button> -->
</section>
<div class="thumbnail-banner">
<div class="thumbnails">
</div>
</div>
<section class="content">
<h2>Clients include...</h2>
<p>BBC, Channel4, Net-A-Porter, GAMSTOP, HMRC, MMO, MoJ
</p>
</section>
<footer>
<p>© 2025 Webtrex IT Limited. All rights reserved.</p>
</footer>
</body>
</html>