-
Notifications
You must be signed in to change notification settings - Fork 0
/
Servicepage.html
136 lines (82 loc) · 5.5 KB
/
Servicepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Page1 </title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<header>
<nav class="navbar navbar-expand-sm navbar-light bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="./icon.jpg" width="100px" height="100px"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="http://127.0.0.1:5500/Homepage.html#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://127.0.0.1:5500/Productpage.html">Product</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="true">
Service
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Service 1</a></li>
<li><a class="dropdown-item" href="#">Service 2</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="http://127.0.0.1:5500/contact.html">Contact Us </a>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
</header>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Global TextTiles</h1>
<p class="lead">Globe Textiles (India) Ltd. (acronym: GTIL) has been successfully termed as the STAR Exporter of Fabrics and garments catering to global and domestic markets for the last two decades. GTIL is one of Ahmedabad’s (Gujarat State, India) top ranked and highly reputed companies in the private sector with primary business forays in exporting fabrics.</p>
<div class="card" style="width: 18rem;">
<img src="http://globetextiles.net/wp-content/uploads/2017/05/thread-1638953-1140x600.jpg" class="card-img-top" alt="...">
<div class="card-body">
<p class="card-text">Globe has been one of the key Supplier of top quality Yarn. In Today’s volatile market it is necessary to maintain the highest quality of the yarn in order to maintain high standards, at Globe we believe that nothing comes above the quality of our products.</p>
</div>
</div>
</div>
</div>
<footer class="bg-dark text-center text-white" style="margin-top:500px">
<div class="container">
<section class="md-4">
<img src="https://img.icons8.com/color/48/000000/facebook-new.png"/>
<img src="https://img.icons8.com/cute-clipart/64/000000/twitter.png"/>
<img src="https://img.icons8.com/color/48/000000/google-logo.png"/>
<img src="https://img.icons8.com/fluency/48/000000/instagram-new.png"/>
<img src="https://img.icons8.com/fluency/48/000000/linkedin-circled.png"/>
<img src="https://img.icons8.com/glyph-neue/64/000000/github.png"/>
</section>
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2022 Copyright:
<a class="text-white" href="#">GlobalTextTiles.com</a>
</div>
<!-- Copyright -->
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></scrip=>
</body>
</html>