-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
67 lines (66 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boston Logistics Automation</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: #f9f9f9;
}
.container {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
h1 {
color: #0044cc;
font-size: 2.5rem;
text-align: center;
}
p {
font-size: 1.1rem;
}
.cta-button {
display: block;
width: 200px;
margin: 2rem auto 0;
padding: 1rem;
background-color: #0044cc;
color: #fff;
text-align: center;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #002a80;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Boston, the hub of logistics innovation!</h1>
<p>
Are you passionate about automation and robotics?
Massachusetts is home to a vibrant ecosystem of cutting-edge companies revolutionizing the logistics industry—from warehouse automation to last-mile delivery.
</p>
<p>
If you are a professional in the logistics industry and are planning a trip to Boston, this resource is for you.
</p>
<h2>Ready to dive in?</h2>
<p>
To help you connect and learn firsthand, several local companies have teamed up to offer exclusive opportunities to tour their facilities and see their incredible work up close.
</p>
<a href="https://forms.gle/89MCAao7tN1spLH66" class="cta-button">Press Here</a>
</div>
</body>
</html>