-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
92 lines (83 loc) · 3.33 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D and D International</title>
<link rel="stylesheet" href="_assets/style/dnd.css"/>
</head>
<body>
<div class="main-wrapper">
<?php include_once('./_partials/header.php') ?>
<?php include_once('./_partials/nav.php') ?>
<main>
<h1>D & D International</h1>
<hr class="underline">
<h2 class="subtext">Integrated Engineering Solutions</h2>
<img src="./_assets/img/header-md.png" class="hidden-when-large" />
<p>
Whether you're in need of a complete factory relocation or the refurbishment of a single machine,
D&D International Engineering Services offers totally integrated engineering solutions that can
save you time, money and minimise the disruption to your business.
</p>
<p>
With over 20 years experience worldwide, our highly skilled workforce of electrical and mechanical
engineers can meet your needs smoothly, efficiently and on time.
</p>
<p>
Take a look at our extensive range of services and just a few examples of major projects we've
handled in recent years. Whatever you're looking to move, repair or perhaps sell, we'll provide the solution.
</p>
<h3> Case Studies around the World </h3>
<p style="margin-top: -15px;"> (Click a flag for more information) </p>
<div class="flag-grid">
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Latvia.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Hungary.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Malaysia.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Australia.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/China.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Russia.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Lebanon.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Egypt.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Greece.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Tunisia.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Turkey.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/Spain.jpg" />
</a>
<div class="flag-item hidden-when-small"></div>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/usa.jpg" />
</a>
<a href="/countries/usa">
<img class="flag-item" src="./_assets/img/flags/United_Kingdom.jpg" />
</a>
<div class="flag-item hidden-when-small"></div>
</div>
</main>
<?php include_once('./_partials/aside.php') ?>
<?php include_once('./_partials/footer.php') ?>
</div>
</body>
</html>