-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
146 lines (122 loc) · 5.12 KB
/
Contact.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="Styles.css"
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Southren Gases</title>
</head>
<header>
<nav class="navbar navbar-light navbar navbar-expand-md fixed-top" style="background-color: #ffffff;">
<div class="container-fluid">
<a class="navbar-brand" href="Index.html"><img src="./Assets/Logo.png" alt="icon" width="70%" height="0%"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Products.html">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Solution.html">Solution</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page"href="Contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<body>
</body>
<footer class="text-white text-center text-lg-start bg-primary">
<!-- Grid container -->
<div class="container p-4">
<!--Grid row-->
<div class="row mt-4">
<!--Grid column-->
<div class="col-lg-4 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase mb-4">About company</h5>
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium
voluptatum deleniti atque corrupti.
</p>
<p>
Blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas
molestias.
</p>
<div class="mt-4">
<!-- Facebook -->
<a type="button" class="btn btn-floating btn-primary btn-lg"><i class="fab fa-facebook-f"></i></a>
<!-- Dribbble -->
<a type="button" class="btn btn-floating btn-primary btn-lg"><i class="fab fa-dribbble"></i></a>
<!-- Twitter -->
<a type="button" class="btn btn-floating btn-primary btn-lg"><i class="fab fa-twitter"></i></a>
<!-- Google + -->
<a type="button" class="btn btn-floating btn-primary btn-lg"><i class="fab fa-google-plus-g"></i></a>
<!-- Linkedin -->
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase mb-4 pb-1" style="margin-left: 0em;">Company Address</h5>
<ul class="fa-ul" style="margin-left: -1.65em;">
<li class="mb-3">
<span class="fa-li"><i class="fas fa-home"></i></span><span class="ms-2">New York, NY 10012, US</span>
</li>
<li class="mb-3">
<span class="fa-li"><i class="fas fa-envelope"></i></span><span class="ms-2">[email protected]</span>
</li>
<li class="mb-3">
<span class="fa-li"><i class="fas fa-phone"></i></span><span class="ms-2">+ 01 234 567 88</span>
</li>
<li class="mb-3">
<span class="fa-li"><i class="fas fa-print"></i></span><span class="ms-2">+ 01 234 567 89</span>
</li>
</ul>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4 mb-md-0">
<h5 class="text-uppercase mb-4">Products</h5>
<table class="table text-center text-white">
<tbody class="font-weight-normal">
<tr>
<a class="text-white" href="Products.html">dry ice</a><br><br>
</tr>
<tr>
<a class="text-white" href="Products.html">dry ice</a><br><br>
</tr>
<tr>
<a class="text-white" href="Products.html">dry ice</a>
</tr>
</tbody>
</table>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2021 Copyright:
<a class="text-white" href="Index.html">Southren Gases</a>
</div>
<!-- Copyright -->
</footer>
</div>
<!-- End of .container -->
</footer>
<!--Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</html>