Browse Source

form styles are changeds

saikiranbolli 2 years ago
parent
commit
7b54670c3a
7 changed files with 204 additions and 121 deletions
  1. 59
    49
      contact.html
  2. 2
    0
      dist/Js/footer.js
  3. 4
    1
      dist/css/main.css
  4. 2
    2
      dist/css/style.css
  5. 114
    60
      partners.html
  6. 17
    1
      press.html
  7. 6
    8
      support.html

+ 59
- 49
contact.html View File

@@ -36,6 +36,15 @@
36 36
       .error{
37 37
         color: red;
38 38
       }
39
+      #anwi_contact-form button{
40
+        border: none;
41
+        background-color: #0A1039;
42
+        text-transform: uppercase;
43
+        font-weight: 600;
44
+        padding: 9px 25px;
45
+        color: #fff;
46
+        font-size: 13px;
47
+      }
39 48
     </style>
40 49
 </head>
41 50
 
@@ -56,7 +65,7 @@
56 65
             </div>
57 66
         </div>
58 67
     </section>
59
-        <section class="contact-section py-md-5 py-3">
68
+        <section class="contact-section py-md-5 py-3 bg-gradient-violet">
60 69
             <div class="container pt-md-5 pt-3">
61 70
               <div class="row bg-white rounded-3 shadow mx-0">
62 71
                 <div class="col-lg-6 col-12 mb-30 bg-gradient-anwi text-white p-md-5 p-4">
@@ -87,22 +96,23 @@
87 96
                     <!-- <h3 class="contact-page-title border-0">Please fill the details so that our experts will get back to you.</h3> -->
88 97
                     <h2 class="fw-500 text-center">Tell Us your Message</h3>
89 98
                     <div class="contact-form  account-details-form">
90
-                      <form id="anwi_contact-form" class="single-input-item" autocomplete="off" method="POST">
91
-                        <div class="form-group pb-2">
92
-                          <label>Your Name <span class="required text-danger">*</span></label>
93
-                          <input type="text" name="contactname" id="user_name" class="w-100 form-control shadow-none rounded-0" required>
99
+                    
100
+                      <form id="anwi_contact-form" class="form-floating" autocomplete="off" method="POST">
101
+                        <div class="form-floating mb-3">
102
+                          <input type="text" class="form-control shadow-none"  name="contactname" id="user_name" placeholder="jhon" required>
103
+                          <label for="user_name">Your Name </label>
94 104
                         </div>
95
-                        <div class="form-group  pb-3">
96
-                          <label>Number <span class="required text-danger">*</span></label>
97
-                          <input type="number" id="user_number" class="w-100 form-control shadow-none rounded-0"  required pattern="/^-?\d+\.?\d*$/" autocomplete="off" onkeypress="if(this.value.length==10) return false;" name="contactnumber" maxlength="10">
105
+                        <div class="form-floating mb-3">
106
+                          <input type="text" class="form-control shadow-none"  name="contactnumber" id="user_number" placeholder="9887767644" required pattern="/^-?\d+\.?\d*$/" autocomplete="off" onkeypress="if(this.value.length==10) return false;" name="contactnumber" maxlength="10">
107
+                          <label for="user_number">Number</label>
98 108
                         </div>
99
-                        <div class="form-group  pb-3">
100
-                          <label>Your Email <span class="required text-danger">*</span></label>
101
-                          <input type="email" name="contactemail" id="user_email" class="w-100 form-control shadow-none rounded-0"  required>
109
+                        <div class="form-floating mb-3">
110
+                          <input type="email" class="form-control shadow-none"  name="contactname" id="user_email" placeholder="exp12@gmail.com" required>
111
+                          <label for="user_email">Email</label>
102 112
                         </div>
103
-                        <div class="form-group  pb-md-5 pb-2">
104
-                          <label>Your Message</label>
105
-                          <textarea name="contactmessage" class="pb-10 w-100 form-control shadow-none rounded-0" id="user_message" rows="4" id="contactMessage"></textarea>
113
+                        <div class="form-floating mb-3">
114
+                          <textarea name="contactmessage" style="height: 100px" class="pb-10 w-100 form-control shadow-none rounded-0" id="user_message" rows="4" cols="5" id="contactMessage"></textarea>
115
+                          <label for="user_message">Message</label>
106 116
                         </div>
107 117
                         <div class="form-group mb-0 text-end">
108 118
                           <button class="btn btn-lg single-btn w-lg-25" id="contact_form_submit">Submit</button>
@@ -196,41 +206,41 @@
196 206
       //    }
197 207
       // })
198 208
    
199
-      $("#anwi_contact-form").validate({
200
-                rules: {
201
-                    phone: {
202
-                        minlength: 10,
203
-                        maxlength: 10,
204
-                        number: true
205
-                    },
206
-                },
207
-                submitHandler: function(form ,e) {
208
-                    e.preventDefault();
209
-                    // $("#pageloader").css({"display":"block"});
210
-                    $.ajax({
211
-                        type: "POST",
212
-                        url: "contact.php",
213
-                        data: $(form).serialize(),
214
-                        success: function(res) {
215
-                          debugger;
216
-                            if (res == 1) {
217
-                                $(".pageloader").removeClass("is_open");
218
-                                $(".overlay_effect").removeClass("is_open");
219
-                                toastr.success('Success, Our Experts will get back to you!');
220
-                                $(form).trigger("reset");
221
-                                $(form).find('.form-control-placeholder').removeClass('floating-label');
222
-                                $(this).addClass("d-none");
223
-                            }else {
224
-                                $(".pageloader").removeClass("is_open");
225
-                                $(".overlay_effect").removeClass("is_open");
226
-                                toastr.error('Something Went Wrong,Try Again!');
227
-                                $("#biz-contact-form").removeClass("d-none");
228
-                            } 
229
-                        }
230
-                    });
231
-                    return false;
232
-                }
233
-            });
209
+      // $("#anwi_contact-form").validate({
210
+      //           rules: {
211
+      //               phone: {
212
+      //                   minlength: 10,
213
+      //                   maxlength: 10,
214
+      //                   number: true
215
+      //               },
216
+      //           },
217
+      //           submitHandler: function(form ,e) {
218
+      //               e.preventDefault();
219
+      //               // $("#pageloader").css({"display":"block"});
220
+      //               $.ajax({
221
+      //                   type: "POST",
222
+      //                   url: "contact.php",
223
+      //                   data: $(form).serialize(),
224
+      //                   success: function(res) {
225
+      //                     debugger;
226
+      //                       if (res == 1) {
227
+      //                           $(".pageloader").removeClass("is_open");
228
+      //                           $(".overlay_effect").removeClass("is_open");
229
+      //                           toastr.success('Success, Our Experts will get back to you!');
230
+      //                           $(form).trigger("reset");
231
+      //                           $(form).find('.form-control-placeholder').removeClass('floating-label');
232
+      //                           $(this).addClass("d-none");
233
+      //                       }else {
234
+      //                           $(".pageloader").removeClass("is_open");
235
+      //                           $(".overlay_effect").removeClass("is_open");
236
+      //                           toastr.error('Something Went Wrong,Try Again!');
237
+      //                           $("#biz-contact-form").removeClass("d-none");
238
+      //                       } 
239
+      //                   }
240
+      //               });
241
+      //               return false;
242
+      //           }
243
+      //       });
234 244
    </script>
235 245
 
236 246
 </body>

+ 2
- 0
dist/Js/footer.js View File

@@ -57,6 +57,7 @@ $(document).ready(function () {
57 57
         <ul class="list-inline">
58 58
             <li><a href="./about.html" class="text-white text-decoration-none satoshi_font">About Us</a></li>
59 59
             <li><a href="./press.html" class="text-white text-decoration-none satoshi_font">Press</a></li>
60
+            <li><a href="./partners.html" class="text-white text-decoration-none satoshi_font">Partner</a></li>
60 61
             <li><a href="#" class="text-white text-decoration-none satoshi_font">Quality Certification</a></li>
61 62
             <li><a href="#" class="text-white text-decoration-none satoshi_font">Case Study</a></li>
62 63
             <li><a href="#" class="text-white text-decoration-none satoshi_font">Terms</a></li>
@@ -243,6 +244,7 @@ $(document).ready(function () {
243 244
                             <ul class="list-inline">
244 245
                                 <li class="fs-6"><a href="./about.html" class="text-white text-decoration-none satoshi_font">About Us</a></li>
245 246
                                 <li class="fs-6"><a href="./press.html" class="text-white text-decoration-none satoshi_font">Press</a></li>
247
+                                <li><a href="./partners.html" class="text-white text-decoration-none satoshi_font">Partner</a></li>
246 248
                                 <li class="fs-6"><a href="#" class="text-white text-decoration-none satoshi_font">Quality Certification</a></li>
247 249
                                 <li class="fs-6"><a href="#" class="text-white text-decoration-none satoshi_font">Case Study</a></li>
248 250
                                 <li class="fs-6"><a href="#" class="text-white text-decoration-none satoshi_font">Terms</a></li>

+ 4
- 1
dist/css/main.css View File

@@ -1345,7 +1345,7 @@ html,body{
1345 1345
         width: 100%;
1346 1346
         padding: 80px 0;
1347 1347
         box-sizing: border-box;
1348
-        background: #f9f9f9;
1348
+        /* background: #f9f9f9; */
1349 1349
     }
1350 1350
 }
1351 1351
 @media only screen and (min-width: 1440px){
@@ -1509,6 +1509,9 @@ display: none;
1509 1509
     /* background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%); */
1510 1510
     background: linear-gradient(112.1deg, rgb(63, 76, 119) -14.8% , rgb(32, 38, 57) 100.4%);
1511 1511
   }
1512
+  .bg-gradient-violet{
1513
+    background: linear-gradient(90deg, rgba(230,242,244,1) 6%, rgba(236,228,220,1) 100%);
1514
+  }
1512 1515
   @media only screen and (min-width: 769px) and (max-width: 1199px) {
1513 1516
   span.transform_text2 {
1514 1517
     position: absolute;

+ 2
- 2
dist/css/style.css View File

@@ -2280,9 +2280,9 @@ textarea:focus {
2280 2280
 .bg-white {
2281 2281
   background-color: #fff;
2282 2282
 }
2283
-.bg-gradient-violet{
2283
+/* .bg-gradient-violet{
2284 2284
   background-image: linear-gradient( 45deg, hsl(220deg 52% 91%) 0%, hsl(229deg 48% 90%) 8%, hsl(243deg 42% 90%) 17%, hsl(260deg 39% 88%) 25%, hsl(272deg 43% 86%) 33%, hsl(285deg 44% 84%) 42%, hsl(300deg 43% 82%) 50%, hsl(300deg 43% 82%) 58%, hsl(300deg 43% 82%) 67%, hsl(300deg 43% 82%) 75%, hsl(293deg 40% 83%) 83%, hsl(286deg 36% 84%) 92%, hsl(280deg 31% 85%) 100% );
2285
-}
2285
+} */
2286 2286
 
2287 2287
 .bg-gray {
2288 2288
   background-color: #FAFAFA;

+ 114
- 60
partners.html View File

@@ -31,14 +31,30 @@
31 31
     <link rel="stylesheet" href="./dist/css/fontawesome.min.css">
32 32
     <link rel="stylesheet" href="./dist/toaster/toastr.css">
33 33
 
34
-    <title>Contact | Anwi</title>
34
+    <title>Partners | Anwi</title>
35 35
     <style>
36 36
       .error{
37 37
         color: red;
38 38
       }
39 39
       .myaccount-content .account-details-form .single-input-item.partner_form label {
40
-        font-size: 14px;
40
+        font-size: 16px;
41 41
       }
42
+      .partner-details-form button{
43
+        border: none;
44
+        background-color: #0A1039;
45
+        text-transform: uppercase;
46
+        font-weight: 600;
47
+        padding: 9px 25px;
48
+        color: #fff;
49
+        font-size: 13px;
50
+      }
51
+      .form-control{
52
+        line-height: 2;
53
+      }
54
+      button:hover {
55
+        background-color: #1f2226 !important;
56
+        color: #fff !important;
57
+    }
42 58
     </style>
43 59
 </head>
44 60
 
@@ -59,8 +75,8 @@
59 75
             </div>
60 76
         </div>
61 77
     </section>
62
-        <section class="contact-section py-md-5 py-3">
63
-            <div class="container pt-md-5 pt-3">
78
+        <section class="contact-section py-md-5 py-3 bg-gradient-violet">
79
+            <div class="container py-md-5 pt-3">
64 80
               <div class="row bg-white rounded-3 shadow mx-0">
65 81
                 <div class="col-lg-5 col-12 mb-30 bg-gradient-anwi text-white p-md-5 p-4">
66 82
                   <!--  contact page side content  -->
@@ -89,81 +105,66 @@
89 105
                   <div class="contact-form-content myaccount-content p-0 border-0">
90 106
                     <!-- <h3 class="contact-page-title border-0">Please fill the details so that our experts will get back to you.</h3> -->
91 107
                     <!-- <h2 class="fw-500 text-center">Tell Us your Message</h3> -->
92
-                    <div class="contact-form  account-details-form">
93
-                      <form id="anwi_contact-form" class="single-input-item d-none" autocomplete="off" method="POST">
94
-                        <div class="form-group pb-2">
95
-                          <label>Your Name <span class="required text-danger">*</span></label>
96
-                          <input type="text" name="contactname" id="user_name" class="w-100 form-control shadow-none rounded-0" required>
97
-                        </div>
98
-                        <div class="form-group  pb-3">
99
-                          <label>Number <span class="required text-danger">*</span></label>
100
-                          <input type="number" id="user_number" class="w-100 form-control shadow-none rounded-0"  required pattern="/^-?\d+\.?\d*$/" autocomplete="off" onkeypress="if(this.value.length==10) return false;" name="contactnumber" maxlength="10">
101
-                        </div>
102
-                        <div class="form-group  pb-3">
103
-                          <label>Your Email <span class="required text-danger">*</span></label>
104
-                          <input type="email" name="contactemail" id="user_email" class="w-100 form-control shadow-none rounded-0"  required>
105
-                        </div>
106
-                        <div class="form-group  pb-md-5 pb-2">
107
-                          <label>Your Message</label>
108
-                          <textarea name="contactmessage" class="pb-10 w-100 form-control shadow-none rounded-0" id="user_message" rows="4" id="contactMessage"></textarea>
109
-                        </div>
110
-                        <div class="form-group mb-0 text-end">
111
-                          <button class="btn btn-lg single-btn w-lg-25" id="contact_form_submit">Submit</button>
112
-                        </div>
113
-                      </form>
114
-
115
-                      <form id="anwi_contact-form" class="single-input-item partner_form" autocomplete="off" method="POST">
108
+                    <div class="contact-form m-2 mt-md-5 partner-details-form">
109
+                      <form id="anwi_contact-form" class="form-floating partner_form" autocomplete="off" action="" method="post">
116 110
                         <div class="row align-items-center">
117 111
                             <div class="col-md-6 pb-md-2">
118
-                                <div class="form-group pb-2">
119
-                                    <label>Company Name <span class="required text-danger">*</span></label>
120
-                                    <input type="text" name="partnercompany" id="partner_company" class="w-100 form-control shadow-none rounded-0" required>
112
+                                <div class="form-floating form-group pb-md-3">
113
+                                    <input type="text" name="partnercompany" id="partner_company" Placeholder="Company Name" class="w-100 form-control shadow-none rounded-3" required>
114
+                                    <label for="partner_company">Compnay Name</label>
121 115
                                 </div>
122 116
                             </div>
123
-                            <div class="col-md-6 pb-md-2">
124
-                                <div class="form-group pb-2">
125
-                                    <label>Contact Name <span class="required text-danger">*</span></label>
126
-                                    <input type="text" name="partnername" id="partner_name" class="w-100 form-control shadow-none rounded-0" required>
117
+                            <div class="col-md-6 pb-md-3">
118
+                                <div class="form-floating form-group pb-2">
119
+                                    <input type="text" name="partnername" id="partner_name" Placeholder="Contact Name" class="w-100 form-control shadow-none rounded-3" required>
120
+                                    <label for="partner_name">Contact Name</label>
127 121
                                 </div>
128 122
                             </div>
129
-                            <div class="col-md-6 pb-md-2">
130
-                                <div class="form-group  pb-3">
131
-                                    <label>Number <span class="required text-danger">*</span></label>
132
-                                    <input type="number" id="partner_number" class="w-100 form-control shadow-none rounded-0"  required pattern="/^-?\d+\.?\d*$/" autocomplete="off" onkeypress="if(this.value.length==10) return false;" name="partnernumber" maxlength="10">
123
+                            <div class="col-md-6 pb-md-3">
124
+                                <div class="form-floating form-group  pb-3">
125
+                                    <!-- <label>Number <span class="required text-danger">*</span></label> -->
126
+                                    <input type="number" name="partnernumber" id="partner_number" Placeholder="Contact Number" class="w-100 form-control shadow-none rounded-3" required pattern="/^-?\d+\.?\d*$/" autocomplete="off" onkeypress="if(this.value.length==10) return false;" maxlength="10">
127
+                                    <label for="partner_number">Number</label>
133 128
                                 </div>
134 129
                             </div>
135
-                            <div class="col-md-6 pb-md-2">
136
-                                <div class="form-group  pb-3">
137
-                                    <label>Your Email <span class="required text-danger">*</span></label>
138
-                                    <input type="email" name="partneremail" id="partner_email" class="w-100 form-control shadow-none rounded-0"  required>
130
+                            <div class="col-md-6 pb-md-3">
131
+                                <div class="form-floating form-group  pb-3">
132
+                                    <!-- <label>Your Email <span class="required text-danger">*</span></label> -->
133
+                                    <input type="email" name="partneremail" id="partner_email" Placeholder="Email" class="w-100 form-control shadow-none rounded-3"  required>
134
+                                    <label for="partner_email">Email</label>
139 135
                                 </div>
140 136
                             </div>
141
-                            <div class="col-md-6 pb-md-2">
142
-                                <div class="form-group pb-2">
143
-                                    <label>City<span class="required text-danger">*</span></label>
144
-                                    <input type="text" name="partnercity" id="partner_city" class="w-100 form-control shadow-none rounded-0" required>
137
+                            <div class="col-md-6 pb-md-3">
138
+                                <div class="form-floating form-group pb-2">
139
+                                    <!-- <label>City<span class="required text-danger">*</span></label> -->
140
+                                    <input type="text" name="partnercity" id="partner_city" Placeholder="City" class="w-100 form-control shadow-none rounded-3" required>
141
+                                    <label for="partner_city">City</label>
145 142
                                 </div>
146 143
                             </div>
147
-                            <div class="col-md-6 pb-md-2">
148
-                                <div class="form-group pb-2">
149
-                                    <label>State</label>
150
-                                    <input type="text" name="partnerstate" id="partner_state" class="w-100 form-control shadow-none rounded-0">
144
+                            <div class="col-md-6 pb-md-3">
145
+                                <div class="form-floating form-group pb-2">
146
+                                    <!-- <label>State</label> -->
147
+                                    <input type="text" name="partnerstate" id="partner_state" Placeholder="State" class="w-100 form-control shadow-none rounded-3">
148
+                                    <label for="partner_state">State</label>
151 149
                                 </div>
152 150
                             </div>
153
-                            <div class="col-md-6 pb-md-2">
154
-                                <div class="form-group pb-2">
155
-                                    <label>GST No:</label>
156
-                                    <input type="text" name="partner_gstno" id="partner_gstno" class="w-100 form-control shadow-none rounded-0">
151
+                            <div class="col-md-6 pb-md-4">
152
+                                <div class="form-floating form-group pb-2">
153
+                                    <!-- <label>GST No:</label> -->
154
+                                    <input type="text" name="partner_gstno" id="partner_gstno" Placeholder="GST No" class="w-100 form-control shadow-none rounded-3">
155
+                                    <label for="partner_gstno">GST No</label>
157 156
                                 </div>
158 157
                             </div>
159
-                            <div class="col-12">
160
-                                <div class="form-group pb-2">
161
-                                    <label>Your Message</label>
162
-                                    <textarea name="partnermessage" class="pb-10 w-100 form-control shadow-none rounded-0" id="partner_message" rows="4" id="contactMessage"></textarea>
158
+                            <div class="col-12 pb-md-4">
159
+                                <div class="form-floating form-group pb-2">
160
+                                    <!-- <label>Your Message</label> -->
161
+                                    <textarea name="partnermessage" style="height: 100px" class="pb-10 w-100 form-control shadow-none rounded-3" Placeholder="Description" id="partner_message" rows="4" id="contactMessage"></textarea>
162
+                                    <label for="partner_message">Description</label>
163 163
                                   </div>
164 164
                             </div>
165 165
                             <div class="form-group mb-0 mt-3 text-end">
166
-                                <button class="btn btn-lg single-btn w-lg-25" id="contact_form_submit">Submit</button>
166
+                                <button class="btn btn-lg single-btn w-lg-25" >Submit</button>
167
+                                <!-- <p class="mb-0 btn btn-lg single-btn w-lg-25" id="partner_form_submit">Submit</p> -->
167 168
                               </div>
168 169
                         </div>
169 170
                       </form>
@@ -207,6 +208,59 @@
207 208
     <script src="./dist/js/main.js"></script>
208 209
 
209 210
     <script>
211
+
212
+// let contactname, contactemail,contactnumber;
213
+  
214
+//     $("#partner_form_submit").click(function(){
215
+//         contactname = $("#partner_name").val();
216
+//         contactemail = $("#partner_email").val();
217
+//         contactnumber = $("#partner_number").val();
218
+//     if(contactname == "" || contactemail == "" || contactnumber == ""){
219
+//         alert("required feilds are empty!");
220
+//     }else{
221
+//       let url=`https://beta.bizgaze.app/apis/v4/bizgaze/integrations/leads/create`;
222
+//       let stat = `a88a8849004f425ab928e79bd9d7aa66`;
223
+//         getDataStatAxios(url,stat);
224
+//     } 
225
+// });
226
+
227
+// async function getDataStatAxios(url,stat) {
228
+//     const config = {
229
+//         url,
230
+//         method: 'post',
231
+//         headers: {
232
+//             'Authorization': `stat ${stat}`,
233
+//         },
234
+//         dataraw :{
235
+//             CompanyName: "",
236
+//             ContactName: abc,
237
+//             email: ab22c@gmail.com,
238
+//             Phone: 1232256788
239
+// }
240
+//     };
241
+
242
+//     let response = await axios(config);
243
+//     let item_array = JSON.parse(response.data.result);
244
+// }
245
+// async function CheckDetails() {
246
+//     //   $('.mobile-number').html(contactnumber.substr(0, 4))
247
+//       // lead genarating
248
+//       const CREATE_LEAD_API =
249
+//         "https://beta.bizgaze.app/apis/v4/bizgaze/integrations/leads/create";
250
+//       const AUTH_SESSION = "stat a88a8849004f425ab928e79bd9d7aa66";
251
+//       const { data } = await postMethod(
252
+//         CREATE_LEAD_API,
253
+//         AUTH_SESSION,
254
+//         JSON.stringify({
255
+//           CompanyName: "",
256
+//           ContactName: contactname,
257
+//           email: contactemail,
258
+//           Phone: contactnumber,
259
+//         })
260
+//       );
261
+//       console.log(data.errors);
262
+//     };
263
+
210 264
       // $("#contact_form_submit").click(function(){
211 265
       //   debugger
212 266
       //    let User_name = $("#user_name").val();

+ 17
- 1
press.html View File

@@ -262,7 +262,7 @@
262 262
         </div>
263 263
       </div>
264 264
     </section>
265
-    <section id="ora_products" class="py-md-5">
265
+    <section id="ora_products1" class="py-md-5 bg-gradient-violet">
266 266
       <h2 class="text-center py-3 py-md-4">Our Releases Notes</h2>
267 267
       <div class="container image-wrapper py-md-4 border-0 rounded-4">
268 268
         <div class="lightbox">
@@ -286,6 +286,22 @@
286 286
         <!--END: Modal -->
287 287
       </div>
288 288
     </section>
289
+    <section>
290
+      <div class="container py-md-5 p-5">
291
+        <h2 class="fw-600 mb-md-4 text-center">For media related queries contact</h2>
292
+        <div class="row">
293
+          <div class="py-md-1 py-3 col-6 col-md-6 text-center">
294
+            <i class="fa-solid fa-user"></i>
295
+            <span class="fs-9 ps-2">Mr. S. Sameer</span>
296
+          </div>
297
+          <div  class="py-md-1 py-3 col-6 col-md-6 text-center">
298
+            <i class="fa-solid fa-phone"></i>
299
+            <span class="fs-9 ps-2"><a href="tel:9885583057" class="">+91 9885583057</a></span> 
300
+          </div>
301
+        </div>
302
+       
303
+      </div>
304
+    </section>
289 305
   </main>
290 306
   <!-- footer -->
291 307
   <div id="footer-head" class=""></div>

+ 6
- 8
support.html View File

@@ -43,7 +43,7 @@
43 43
             <div id="home-banner" class="pt-md-5">
44 44
                 <div class="banner-home--wrapper pt-md-5">
45 45
                     <div class="banner-home--banner">
46
-                        <img src="" alt="homepage-kv-pc" class="img d-none">
46
+                        <img src="https://oasis.opstatics.com/content/dam/support/homepage/kv-pc.png" alt="homepage-kv-pc" class="img d-none">
47 47
                         <img src="./dist/assets/imgs/allin_imgs/support_bg.png" alt="homepage-kv-pc" class="img d-none">
48 48
                     </div>
49 49
                     <div class="banner-home--wrapper_upper py-md-5 py-5 text-white">
@@ -74,7 +74,7 @@
74 74
                 </div>
75 75
             </div>
76 76
         </section>
77
-        <section>
77
+        <section class="bg-gradient-violet">
78 78
             <div id="home-help">
79 79
                 <div class="home-help--wrapper">
80 80
                     <div class="home-help--wrapper_content">
@@ -84,7 +84,7 @@
84 84
                         <div class="home-help--wrapper_content-items">
85 85
                             <a href="https://anwisystems.com/w" alt="" class="grow-1 text-dark">
86 86
                                 <div class="grow-width">
87
-                                    <img src="./dist/assets/imgs/support/warranty-icon.png" alt="" class="icon">
87
+                                  <svg class="svg-inline--fa fa-shield-halved fs-60" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="shield-halved" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8l0 0z"></path></svg>
88 88
                                     <div class="content">
89 89
                                         <p class="item_title">Warranty</p>
90 90
                                         <p class="item_dec">Enable Warranty / Check Warranty.</p>
@@ -92,9 +92,7 @@
92 92
                                 </div>
93 93
                             </a>
94 94
                             <a href="#" alt="" class="grow-1 text-dark">
95
-                                <div class="grow-width"><img
96
-                                        src="./dist/assets/imgs/support/laptop-service.jpg"
97
-                                        alt="" class="icon">
95
+                                <div class="grow-width fs-60"><svg class="svg-inline--fa fa-laptop" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="laptop" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" data-fa-i2svg=""><path fill="currentColor" d="M128 32C92.7 32 64 60.7 64 96V352h64V96H512V352h64V96c0-35.3-28.7-64-64-64H128zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480H563.2c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2H19.2z"></path></svg>
98 96
                                     <div class="content">
99 97
                                         <p class="item_title">Laptop Service</p>
100 98
                                         <p class="item_dec">Get your Installation and Repair started from here.</p>
@@ -103,7 +101,7 @@
103 101
                             </a>
104 102
                             <a href="#" alt="" class="grow-1 text-dark">
105 103
                                 <div class="grow-width">
106
-                                    <img src="./dist/assets/imgs/support/winfo-icon-system-management.png" alt="" class="icon">
104
+                                  <svg class="svg-inline--fa fa-desktop fs-60" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="desktop" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg=""><path fill="currentColor" d="M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V288H64V64H512z"></path></svg>
107 105
                                     <div class="content">
108 106
                                         <p class="item_title">All in One Service</p>
109 107
                                         <p class="item_dec">Get your repair started here.</p>
@@ -112,7 +110,7 @@
112 110
                             </a>
113 111
                             <a href="#" alt=""class="grow-1 text-dark">
114 112
                                 <div class="grow-width">
115
-                                    <img src="./dist/assets/imgs/support/accessories.png" alt="" class="icon">
113
+                                  <svg class="svg-inline--fa fa-screwdriver-wrench fs-60" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="screwdriver-wrench" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"></path></svg>
116 114
                                     <div class="content">
117 115
                                         <p class="item_title">Accessories</p>
118 116
                                         <p class="item_dec">Get repair service in Anwi Service Center.</p>

Loading…
Cancel
Save