Snippets Collections
/*
   (( '-""``""-' ))
     )-__-_.._-__-(
   / --- (o _ o) --- \
   \ .-* ( .0. ) *-. /
   _'-. ,_ '=' _, .-'_
  / ;#'#'# - #'#'#; \
 \_)) -----'#'----- ((_/
      # --------- #
      '# ------- #'
  /..-'# ------- #'-.\
  _\...-\'# -- #'/-.../_
  ((____)- '#' -(____))
    art by - Vinni01 / luchi abi
 
    cout << fixed << setprecision(6) << x;
    freopen ( "sum.in", "r", stdin )
*/
#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <string>
#include <bitset>
#include <cstdio>
#include <limits>
#include <vector>
#include <climits>
#include <cstring>
#include <cstdlib>
#include <fstream>
#include <numeric>
#include <sstream>
#include <cassert>
#include <iomanip>
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <fstream>
#include <unordered_map>
using namespace std ;
#define ll long long
#define dd double
#define ff first
#define ss second
#define pb push_back 
#define pf push_front
#define UseOFF ios_base::sync_with_stdio(0);cin.tie(0), cout.tie(0);
#define sz size
#define ins insert
#define new jweijofdg
const ll N = 1e6 + 111 ;
ll tt = 1 ;
map < char, ll > cnt, cnt2 ;
string abc = "abcdefghijklmnopqrstuvwxyz" ;
string s ;
ll p2[ 1111 ][ 27 ], su2[ 1111 ][ 27 ] ;
map < ll, bool > mp ;
void solve()
{
	ll n ;
	cin >> n ;
	if( n < 3 )
	{
		cout << -1 ;
		return ;
	}
	if( n == 3 )
	{
		cout << "55\n99\n11115" ;
		return ;
	}
	vector < ll > v = { 385, 360, 792, 8360 } ;
	n -= 4 ;
	while( n-- )
	{
		ll x = v[ v.sz() - 1 ] ;
		x += 8360 ;
		v.pb( x ) ; 
	}
	for( auto to : v )
	{
		cout << to << '\n' ;
	}
}
signed main()
{
	UseOFF
	//cin >> tt ;
	while( tt-- )
	{
		solve() ;
	}
}
Server Virtualization is the process of dividing a physical server into several virtual servers, called virtual private servers. Each virtual private server can run independently.

The concept of Server Virtualization widely used in the IT infrastructure to minimizes the costs by increasing the utilization of existing resources.

diagram

Types of Server Virtualization
1. Hypervisor
In the Server Virtualization, Hypervisor plays an important role. It is a layer between the operating system (OS) and hardware. There are two types of hypervisors.

Type 1 hypervisor ( also known as bare metal or native hypervisors)
Type 2 hypervisor ( also known as hosted or Embedded hypervisors)
The hypervisor is mainly used to perform various tasks such as allocate physical hardware resources (CPU, RAM, etc.) to several smaller independent virtual machines, called "guest" on the host machine.
public void executeQuery()
{
    // 22 (24-1 = 23
    this.query().dataSourceName('NATrainingRequest').addRange(fieldNum(NATrainingRequest, Years))
        .value(strFmt('((%1 == %3) || (%2 == %3))', NW_TrainingNeedAssessmentTable.Year-1, NW_TrainingNeedAssessmentTable.Year-2, fieldStr(NATrainingRequest, Years)));
    super();
}
kubectl get no -owide

# List containers running
docker ps

# Enter kind node
docker exec -it kind-control-plane sh

# Show node info
ip link

# Show containers inside node
crictl ps

# Get container process id
crictl inspect <CONTAINER>
  
# Enter container network namespace
nsenter -n -t <PROC_ID>

# Show container network info
ip addr
var climbStairs = function(n) {
    if (n == 1 || n == 0) return 1 // our base cases

    let first = 1;
    let second = 2;

    for (let i = 3; i <= n; i++) {
        let third = first + second;
        first = second;
        second = third;
    }
    return second;

};
var isValid = function(s) {
    let map = {'(' : ')', '[': ']', '{':'}'};
    let stack = [];
    for(let ch of s){
        if(map[ch]){
		//pushing opening bracket first
            stack.push(map[ch]);
        }
        else if(stack.length > 0 && stack[stack.length-1] == ch){
		//if we have a matching closing bracket to the one we pushed earlier, we simply pop it.
            stack.pop();
        }
        else return false;
    }
	//if at last all values are poped i.e stack is empty, we have valid set of parentheses.
    return stack.length == 0;
};
int findJustSmaller(const vector<int>& arr, int target) {
    int low = 0;
    int high = arr.size() - 1;
    int result = -1;

    while (low <= high) {
        int mid = low + (high - low) / 2;

        // If the current element is smaller than or equal to the target,
        // we update the result and continue searching in the right half.
        if (arr[mid] <= target) {
            result = arr[mid];
            low = mid + 1;
        }
        // If the current element is greater than the target, we search in the left half.
        else {
            high = mid - 1;
        }
    }

    return result;
}
#include <iostream>
#include <stack>
using namespace std;
 
// Prints smaller elements on left side of every element
void printPrevSmaller(int arr[], int n)
{
    // Create an empty stack
    stack<int> S;
 
    // Traverse all array elements
    for (int i=0; i<n; i++)
    {
        // Keep removing top element from S while the top
        // element is greater than or equal to arr[i]
        while (!S.empty() && S.top() >= arr[i])
            S.pop();
 
        // If all elements in S were greater than arr[i]
        if (S.empty())
            cout << "_, ";
        else  //Else print the nearest smaller element
            cout << S.top() << ", ";
 
        // Push this element
        S.push(arr[i]);
    }
}
 
int main()
{
    int arr[] = {1, 3, 0, 2, 5};
    int n = sizeof(arr)/sizeof(arr[0]);
    printPrevSmaller(arr, n);
    return 0;
}
[Welcome to south-west-labs privacy, quality, reliability. Your source for Researcher's Specialty chemical's]

"None of our inventory is meant for human consumption or Animal testing of any kind, our inventory is only meant for providing domestic products to domestic buyer's in search of high quality products for the best studying materials research and analysis" 

*violating states laws or our inventory for any type of human consumption or animal testing will be on the buyer, we will ban you from our services, we wre not responsible for buyer's uses, we do not control others actions or irresponsible misuses of our inventory*

Products list:

• MD-PhiP crystal 1gram - 3grams - 5grams

• $40.00

• -

• $110.00

• -

• $165.00

• 

• A-pcyp crystal 1gram - 3grams - 5grams

• $50.00

• -

• $140.00

• -

• $210.00

• 

• FXE 1gram - 3grams - 5grams

• $55.00

• -

• $150.00

• -

• $235.00

• 

• Bromazolam 5mg/1mL Solution

• $50.00

• 

• O-DSMT *sold in 1gram powder orders unless special research testing is requested Not Garanuaranteed*

• $50.00

• 

• 4F-MPH (4-Fluoromethylphenidate) *low stock*

• $65.00

• 

• 

• Flubromazepam 10mg/1mL Solution

• $55.00

• 

• 

• Bromazolam Powder 2grams - 3grams -5 grams

• $220.00

• –

• $300.00

• -

• $455.00

• 

• 

• 2-FDCK crystals 3grams - 5grams

• $155.00

• -

• $215.00

• 

• 

• Fluctizolam 5mg/1mL Solution 

• $65.00

• 

• 

• Rilmazafone 2mg/1mL-5mg/1mL Solution *Price Drop*

• $30.00

• -

• $40.00

• 

• Flubromazepam Powder

• $65.00

• –

• $130.00

• 

• Rilmazafone Powder

• $65.00

• –

• $130.00

• 

• Proto zyne 5grams *extremely high potency handle with proper lab safety equipment, if you cannot properly handle this product due to limitations on equipment, we offer quality lab Pyrex glassware, 0.000mg - 0.0000mg scales, scoopulas and more for complete safety gear set price below*

• $500.00

• --

• Product+ safteyety equipment

• $875.00

• 

[All sales are final, tracked shipping $10 / express shipping $40  FedEx $15 with tracking (some materials may appear in multiple packages and can only be shipped on a order to ship basis from multiple locations which this method covers the cost for the equipment and lab safety gear of those items)

We have only 1 form of contract and that is

south-west-labs@sudomail.com ]

There is no other and thus is a scamming knockoff beware of copycats we offer 100% shipping services and will re-ship when we are notified prior to notifying postal carriers, so that means CONTACT US WITH A SUBJECT LINE "ORDER# NOT RECEIVED RE-SHIP REQUEST" we will contact you with further details to fullfil the re-ship with a required signature replacement to prevent fraudulent claims, we are not here to cheat or scam the postal services so don't involve us in false claims please and thank you you* 

Fill out how to order as such below:

Go-to: temp.pm

Set to 3 days with the following below, [create message] URL place in body of email 

Subject line whatever you want it will be converted to an order# 

(Optional)To create an account with us fill out the temp.pm but including a 5-8 username with a 5 digit pin#: which we will store on physical paper destroyed after 1 year but with a order history and for every 4 orders placed 5th order is %15 off entire order.(Optional)

[  ] Products and quantity amount in a

[  ] 1.

[  ] 2.

[  ] 3. 

[  ] Formation

[  ]  Shipping information

[  ]  Name:

[  ]  Shipping address

[  ] apt or building# 

[  ] City:

[  ] State:

[  ] Zip-code:

[  ] Contact# (optional)

[  ] Shipping service

[  ] We will provide the bitcoin wallet address for payment, once received you will receive a confirmation email of purchase

Followed by an order# shipped with tracking number (can only request tracking twice per order)

Lastly you will receive an order# received email completing the ordering process.

S-W-L Rex🏴‍☠️™️🇺🇲
aigc_to_clip_dict = aigc_report_df[['aigc_vid', 'clip_0_vid', 'clip_1_vid', 'clip_2_vid', 'clip_3_vid', 'clip_4_vid']].set_index('aigc_vid').T.to_dict('list')
      <script>
        function SetPopupText(img, heading1, heading2, description, page)
        {
            console.log(heading1);
            debugger;
            $('#h2H1').html(heading1);
            $('#h2H2').html(heading2);
            $("#imgPopupBanner").attr("src",img);
            $("#pDesc").text(description);
            $("input[type='hidden'][name='page']").val(page);
            return true;
        }
      </script>
<div class="cursor mt">
  <div class="mt"><br/></div>
  <h1>CURSOR HIGHLIGHT COLOR</H1>
  
</div> 
body {
	 background: #fff;
}
 .cursor {
	 width: 100vw;
	 height: 100vh;
	 position: relative;
	 text-align: center;
}
 .cursor ::-moz-selection {
	 background-color: green;
	 color: limegreen;
}
 .cursor ::selection {
	 background-color: limegreen;
	 color: limegreen;
}
 .cursor ::-moz-selection {
	 background-color: limegreen;
	 color: limegreen;
}
 .cursor ::-o-selection {
	 backgroeund-color: limegreen;
	 color: limegreen;
}
 .cursor ::-ms-selection {
	 background-color: limegreen;
	 color: limegreen;
}
 .cursor ::-webkit-selection {
	 background-color: limegreen;
	 color: limegreen;
}
 .cursor h1 {
	 font-size: 90px;
	 font-family: Arial, sans-serif;
	 font-weight: 900;
	 color: #fff;
}
 .cursor .mt {
	 margin-top: 50px;
}
 
<section class="pricing">
         <div class="container">
            <div class="row d-flex align-items justify-content">
               <div class="col-lg-12">
                  <div class="light-heading">
                     <h3 class=""><span class="fontcolor_green">Affordable </span>Creative Logo Solutions Crafted <span class="block">For Businesses
                        of All Sizes</span>
                     </h3>
                     <p class="text-align-center padding-auto-revertcolor">Become the only choice for customers with our strategic insights</p>
                     <br>
                  </div>
               </div>
            </div>
            <div class="pricing-carousel slick-initialized slick-slider"><button type="button" data-role="none" class="slick-prev slick-arrow" aria-label="Previous" role="button" style="">Previous</button>
               <div aria-live="polite" class="slick-list draggable"><div class="slick-track" role="listbox" style="opacity: 1; width: 5648px; transform: translate3d(-1412px, 0px, 0px);"><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-4" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Article Writing Basic<br>PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page                   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                       </li><li> SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-3" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Blog Writing Basic  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        By 1 Professional Copywriter                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions                 
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner         
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights           
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-2" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>SMM Basic <br>PACK</h4>
                     <p>Starting From (per month) $199</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 FB Post    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        50 Page Likes                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FB Profile Image Design      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Twitter Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Twitter Posts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Twitter Background Design              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Profile Keyword Optimization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 LinkedIn Posts      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Instagram Account      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Instagram Post     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Content Calendar          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Hashtag Optimization           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-1" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>SEO Basic   <br>PACK</h4>
                     <p>Starting From (per month) $400</p>
                  </div>
                  <p class="price">
                     $300.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Number of Pages Optimized    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Incoming Links Report                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Keyword Analysis              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Site Restructure      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Analytics     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Title Tag Creation               
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Meta Tag Creation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        W3C HTML Validation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Webmaster Tools       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Setup, Customization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Directory Submission        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Social Bookmarking            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Posts/Comments             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Classified Ads              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Minimum 6 Months Duration           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide20" style="width: 333px;">
                  <div class="heading">
                     <h4>Bronze <br>LOGO PACK</h4>
                     <p>$ 198 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        10 Custom Logo Concepts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specific Logo Designer     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Unlimited Revisions   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Final Formats: All *   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Dedicated Account Manager   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE stationery Design Set            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE MS Word Letterhead   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights    
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('We are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="0">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-active" data-slick-index="1" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide21" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Start-up  <br>Pack</h4>
                     <p>$ 549.00 ONLY</p>
                  </div>
                  <p class="price">
                     $499.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Website    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 jQuery Slider Banner          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Contact/Query Form    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete W3C Certified HTML    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete Deployment    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        CMS will be Additional  
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('web startup  are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="0">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-active" data-slick-index="2" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide22" style="width: 333px;">
                  <div class="heading">
                     <h4>STARTER <br>BRANDING PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Stationery Design Set    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE Fax Template            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Print Ready Formats    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        UNLIMITED Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="0">ORDER NOW</a> 
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-active" data-slick-index="3" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide23" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Content  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Professional Copywriting Service
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Creative &amp; Well-Written by 1 Professional Copywriter             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        300 Words Per Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 4 Business Days Rotation              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty         
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="0">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="4" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide24" style="width: 333px;">
                  <div class="heading">
                     <h4>Article Writing Basic<br>PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page                   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                       </li><li> SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="5" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide25" style="width: 333px;">
                  <div class="heading">
                     <h4>Blog Writing Basic  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        By 1 Professional Copywriter                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions                 
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner         
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights           
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="6" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide26" style="width: 333px;">
                  <div class="heading">
                     <h4>SMM Basic <br>PACK</h4>
                     <p>Starting From (per month) $199</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 FB Post    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        50 Page Likes                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FB Profile Image Design      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Twitter Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Twitter Posts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Twitter Background Design              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Profile Keyword Optimization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 LinkedIn Posts      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Instagram Account      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Instagram Post     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Content Calendar          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Hashtag Optimization           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="7" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide27" style="width: 333px;">
                  <div class="heading">
                     <h4>SEO Basic   <br>PACK</h4>
                     <p>Starting From (per month) $400</p>
                  </div>
                  <p class="price">
                     $300.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Number of Pages Optimized    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Incoming Links Report                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Keyword Analysis              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Site Restructure      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Analytics     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Title Tag Creation               
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Meta Tag Creation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        W3C HTML Validation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Webmaster Tools       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Setup, Customization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Directory Submission        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Social Bookmarking            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Posts/Comments             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Classified Ads              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Minimum 6 Months Duration           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="8" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Bronze <br>LOGO PACK</h4>
                     <p>$ 198 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        10 Custom Logo Concepts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specific Logo Designer     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Unlimited Revisions   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Final Formats: All *   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Dedicated Account Manager   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE stationery Design Set            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE MS Word Letterhead   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights    
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('We are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="9" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Start-up  <br>Pack</h4>
                     <p>$ 549.00 ONLY</p>
                  </div>
                  <p class="price">
                     $499.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Website    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 jQuery Slider Banner          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Contact/Query Form    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete W3C Certified HTML    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete Deployment    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        CMS will be Additional  
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('web startup  are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="10" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>STARTER <br>BRANDING PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Stationery Design Set    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE Fax Template            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Print Ready Formats    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        UNLIMITED Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a> 
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="11" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Content  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Professional Copywriting Service
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Creative &amp; Well-Written by 1 Professional Copywriter             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        300 Words Per Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 4 Business Days Rotation              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty         
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div></div></div>
               
               
               
               <!---5---->
               
               <!--end--->
               <!---6---->
               
               <!--end--->
               <!---7---->
               
               <!--end--->
               <!---8---->
               
               <!--end--->
            <button type="button" data-role="none" class="slick-next slick-arrow" aria-label="Next" role="button" style="">Next</button></div>
         </div>
      </section>
<section class="pricing">
         <div class="container">
            <div class="row d-flex align-items justify-content">
               <div class="col-lg-12">
                  <div class="light-heading">
                     <h3 class=""><span class="fontcolor_green">Affordable </span>Creative Logo Solutions Crafted <span class="block">For Businesses
                        of All Sizes</span>
                     </h3>
                     <p class="text-align-center padding-auto-revertcolor">Become the only choice for customers with our strategic insights</p>
                     <br>
                  </div>
               </div>
            </div>
            <div class="pricing-carousel slick-initialized slick-slider"><button type="button" data-role="none" class="slick-prev slick-arrow" aria-label="Previous" role="button" style="">Previous</button>
               <div aria-live="polite" class="slick-list draggable"><div class="slick-track" role="listbox" style="opacity: 1; width: 5648px; transform: translate3d(-1412px, 0px, 0px);"><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-4" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Article Writing Basic<br>PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page                   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                       </li><li> SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-3" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Blog Writing Basic  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        By 1 Professional Copywriter                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions                 
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner         
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights           
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-2" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>SMM Basic <br>PACK</h4>
                     <p>Starting From (per month) $199</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 FB Post    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        50 Page Likes                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FB Profile Image Design      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Twitter Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Twitter Posts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Twitter Background Design              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Profile Keyword Optimization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 LinkedIn Posts      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Instagram Account      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Instagram Post     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Content Calendar          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Hashtag Optimization           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="-1" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>SEO Basic   <br>PACK</h4>
                     <p>Starting From (per month) $400</p>
                  </div>
                  <p class="price">
                     $300.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Number of Pages Optimized    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Incoming Links Report                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Keyword Analysis              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Site Restructure      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Analytics     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Title Tag Creation               
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Meta Tag Creation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        W3C HTML Validation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Webmaster Tools       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Setup, Customization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Directory Submission        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Social Bookmarking            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Posts/Comments             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Classified Ads              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Minimum 6 Months Duration           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-current slick-active" data-slick-index="0" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide20" style="width: 333px;">
                  <div class="heading">
                     <h4>Bronze <br>LOGO PACK</h4>
                     <p>$ 198 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        10 Custom Logo Concepts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specific Logo Designer     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Unlimited Revisions   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Final Formats: All *   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Dedicated Account Manager   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE stationery Design Set            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE MS Word Letterhead   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights    
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('We are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="0">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-active" data-slick-index="1" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide21" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Start-up  <br>Pack</h4>
                     <p>$ 549.00 ONLY</p>
                  </div>
                  <p class="price">
                     $499.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Website    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 jQuery Slider Banner          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Contact/Query Form    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete W3C Certified HTML    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete Deployment    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        CMS will be Additional  
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('web startup  are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="0">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-active" data-slick-index="2" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide22" style="width: 333px;">
                  <div class="heading">
                     <h4>STARTER <br>BRANDING PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Stationery Design Set    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE Fax Template            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Print Ready Formats    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        UNLIMITED Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="0">ORDER NOW</a> 
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-active" data-slick-index="3" aria-hidden="false" tabindex="0" role="option" aria-describedby="slick-slide23" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Content  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Professional Copywriting Service
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Creative &amp; Well-Written by 1 Professional Copywriter             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        300 Words Per Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 4 Business Days Rotation              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty         
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="0">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="0"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="0"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="4" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide24" style="width: 333px;">
                  <div class="heading">
                     <h4>Article Writing Basic<br>PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page                   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                       </li><li> SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="5" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide25" style="width: 333px;">
                  <div class="heading">
                     <h4>Blog Writing Basic  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 Creative, Fresh &amp; Well-Written Article    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        By 1 Professional Copywriter                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        400 Words Per Page       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 5 Business Days Rotation    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions                 
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Written on Your Specified Topic/Keyword   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Free Submission on any article marketing directories /blog (If required)      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        SEO friendly – Your keyword(s) will be placed in the title, the first &amp; last paragraphs and throughout the web copy in a natural and fluent manner         
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights           
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty             
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="6" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide26" style="width: 333px;">
                  <div class="heading">
                     <h4>SMM Basic <br>PACK</h4>
                     <p>Starting From (per month) $199</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 FB Post    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        50 Page Likes                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FB Profile Image Design      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Twitter Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Twitter Posts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Twitter Background Design              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Profile Keyword Optimization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 LinkedIn Posts      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Manage Instagram Account      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Weekly 1 Instagram Post     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Content Calendar          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Hashtag Optimization           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide" data-slick-index="7" aria-hidden="true" tabindex="-1" role="option" aria-describedby="slick-slide27" style="width: 333px;">
                  <div class="heading">
                     <h4>SEO Basic   <br>PACK</h4>
                     <p>Starting From (per month) $400</p>
                  </div>
                  <p class="price">
                     $300.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Number of Pages Optimized    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Incoming Links Report                
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Keyword Analysis              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Site Restructure      
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Analytics     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Title Tag Creation               
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Meta Tag Creation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        W3C HTML Validation     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Google Webmaster Tools       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Setup, Customization       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Directory Submission        
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Social Bookmarking            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Blog Posts/Comments             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Classified Ads              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Minimum 6 Months Duration           
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="8" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Bronze <br>LOGO PACK</h4>
                     <p>$ 198 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        10 Custom Logo Concepts   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specific Logo Designer     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Unlimited Revisions   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Final Formats: All *   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Dedicated Account Manager   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE stationery Design Set            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE MS Word Letterhead   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee   
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights    
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('We are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="9" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Start-up  <br>Pack</h4>
                     <p>$ 549.00 ONLY</p>
                  </div>
                  <p class="price">
                     $499.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Website    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        1 jQuery Slider Banner          
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Contact/Query Form    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete W3C Certified HTML    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        48 to 72 hours TAT    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Complete Deployment    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Unique Design Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        CMS will be Additional  
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" onclick="SetPopupText('web startup  are here to provide you with the best possible solution, transforming your ideas into reality.','');" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p>  Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="10" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>STARTER <br>BRANDING PACK</h4>
                     <p>$ 199 ONLY</p>
                  </div>
                  <p class="price">
                     $99.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Stationery Design Set    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        FREE Fax Template            
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Print Ready Formats    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        UNLIMITED Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Satisfaction Guarantee    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Money Back Guarantee *
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a> 
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-md-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-md-6 info-box text-align-end">
                        <p>  Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chat" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div><div class="pricing-card basic slick-slide slick-cloned" data-slick-index="11" aria-hidden="true" tabindex="-1" style="width: 333px;">
                  <div class="heading">
                     <h4>Web Content  <br>PACK</h4>
                     <p>$ 99 ONLY</p>
                  </div>
                  <p class="price">
                     $89.00 USD
                  </p>
                  <div class="price-description">Suitable for potential super-startups and
                     brand revamps for companies.
                  </div>
                  <ul class="features">
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 Page Professional Copywriting Service
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Creative &amp; Well-Written by 1 Professional Copywriter             
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Industry Specified Expert Copywriter    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        300 Words Per Page    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        5 Revisions    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        3 to 4 Business Days Rotation              
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        According To Your Exact Requirements     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        Proofing by our in-house experts    
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Ownership Rights     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Original Content     
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        100% Approval Assurance       
                     </li>
                     <li>
                        <i class="fas fa-angle-right "></i>
                        30 Days Money-Back Warranty         
                     </li>
                  </ul>
                  <div class="bottom-description">
                     <p>Add on $50 for for 24 Hours Rush Delivery</p>
                  </div>
                  <a data-toggle="modal" data-target="#exampleModal" class="Btn-solid-price" href="#" tabindex="-1">ORDER NOW</a>   
                  <div class="order-detail d-flex">
                     <!-- <div class="col-md-12 text-center">
                        <h3>Need More info?</h3>
                        </div> -->
                     <div class="col-lg-6">
                        <p> Speak with us</p>
                        <a href="tel:+1888404 0410" tabindex="-1"><span class="number">+1 (888) 404 0410</span></a>
                     </div>
                     <div class="col-lg-6 info-box text-align-end">
                        <p> Want to discuss</p>
                        <a href="javascript:;" class="pkg-chat chatt" tabindex="-1"> Live Chat Now</a>
                     </div>
                  </div>
               </div></div></div>
               
               
               
               <!---5---->
               
               <!--end--->
               <!---6---->
               
               <!--end--->
               <!---7---->
               
               <!--end--->
               <!---8---->
               
               <!--end--->
            <button type="button" data-role="none" class="slick-next slick-arrow" aria-label="Next" role="button" style="">Next</button></div>
         </div>
      </section>
        <p>&copy; <span id="copyrightYear"></span> Your Company. All rights reserved.</p>



// dynamic year //
$(document).ready(function() {
            var currentYear = new Date().getFullYear();
            $("#copyrightYear").text(currentYear);
        });
        <p>&copy; <span id="copyrightYear"></span> Your Company. All rights reserved.</p>



// dynamic year //
$(document).ready(function() {
            var currentYear = new Date().getFullYear();
            $("#copyrightYear").text(currentYear);
        });
const mongoose = require('mongoose');

const voteSchema = new mongoose.Schema({
  poll: { type: mongoose.Schema.Types.ObjectId, ref: 'Poll' },
  option: { type: mongoose.Schema.Types.ObjectId, ref: 'Option' },
  voter: { type: mongoose.Schema.Types.ObjectId, ref: 'Voter' },
  createdAt: { type: Date, default: Date.now }
});

module.exports = mongoose.model('Vote', voteSchema);
const express = require('express');
const bodyParser = require('body-parser');
const mongoose = require('mongoose');
const Vote = require('./models/vote');

const app = express();
app.use(bodyParser.json());

// Connect to MongoDB
mongoose.connect('mongodb://localhost:27017/voting', { useNewUrlParser: true, useUnifiedTopology: true });

// RESTful API for receiving vote submissions
app.post('/api/vote', async (req, res) => {
  const { pollId, optionId, voterId } = req.body;

  // Validate the request body
  if (!pollId || !optionId || !voterId) {
    return res.status(400).json({ error: 'Missing required fields' });
  }

  // Create a new vote document
  const vote = new Vote({
    poll: pollId,
    option: optionId,
    voter: voterId
  });

  try {
    // Save the vote to the database
    await vote.save();
    res.status(201).json({ message: 'Vote submitted successfully' });
  } catch (err) {
    console.error(err);
    res.status(500).json({ error: 'Failed to submit vote' });
  }
});

// Start the server
const port = process.env.PORT || 3000;
app.listen(port, () => console.log(`Server started on port ${port}`));
#include <Adafruit_Fingerprint.h>
#include <WiFi.h>
#include <HTTPClient.h>

// Replace with your fingerprint sensor's serial port
SoftwareSerial mySerial(3, 1);

// Create an instance of the Adafruit Fingerprint library
Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);

// Enter the ID of the fingerprint you want to enroll
int fingerID = 1;

// Enter the URL of the online web system
const char* serverName = "https://example.com/verify";

// Enter the ID of the voter
int voterID = 1;

// Enter the vote ID
int voteID = 1;

// Enter your WiFi credentials
const char* ssid = "your_SSID";
const char* password = "your_PASSWORD";

void setup() {
  // Start the serial communication
  Serial.begin(9600);

  // Set the data rate for the fingerprint sensor serial port
  finger.begin(57600);

  // Check if the fingerprint sensor is found
  if (finger.verifyPassword()) {
    Serial.println("Found fingerprint sensor!");
  } else {
    Serial.println("Did not find fingerprint sensor :(");
    while (1) {
      delay(1);
    }
  }

  // Enroll a new fingerprint
  enrollFingerprint(fingerID);

  // Connect to WiFi
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
  Serial.println("Connected to WiFi");

  // Find a fingerprint match
  if (findFingerprintMatch()) {
    // Send the fingerprint template to the online web system for verification
    if (verifyFingerprint()) {
      // Record the vote securely
      recordVote();

      // Send a confirmation to the online web system
      sendConfirmation();
    } else {
      // Display an error message
      Serial.println("Verification failed.");
    }
  }
}

void loop() {
  // Put your code here
}

void enrollFingerprint(int id) {
  // Wait for the user to place their finger on the sensor
  Serial.println("Please place your finger on the sensor...");
  finger.getImage();
  delay(100);

  // Convert the image to a template
  Serial.println("Converting image...");
  finger.image2tz(1);
  delay(100);

  // Save the template to the specified ID
  Serial.println("Saving template...");
  finger.storeModel(id);
  delay(100);

  // Print a success message
  Serial.println("Template saved!");
}

bool findFingerprintMatch() {
  // Wait for the user to place their finger on the sensor
  Serial.println("Please place your finger on the sensor...");
  finger.getImage();
  delay(100);

  // Convert the image to a template
  Serial.println("Converting image...");
  finger.image2tz(1);
  delay(100);

  // Search for a match
  Serial.println("Searching for a match...");
  finger.searchModels();
  delay(100);

  // Print the match result
  if (finger.fingerID == fingerID) {
    Serial.println("Match found!");
    return true;
  } else {
    Serial.println("No match found.");
    return false;
  }
}

bool verifyFingerprint() {
  // Send the fingerprint template to the online web system for verification
  if (WiFi.status() == WL_CONNECTED) {
    HTTPClient http;

    // Prepare the HTTP request
    http.begin(serverName);
    http.addHeader("Content-Type", "application/json");

    // Convert the fingerprint template to a JSON string
    String json = "{\"fingerprint\":";
    finger.getModel(json);
    json += "}";

    // Send the HTTP request
    int httpResponseCode = http.POST(json);

    // Check the HTTP response code
    if (httpResponseCode == 200) {
      // Parse the verification result from the response
      String response = http.getString();
      if (response == "true") {
        Serial.println("Verification successful.");
        return true;
      } else {
        Serial.println("Verification failed.");
        return false;
      }
    } else {
      Serial.print("Error on sending POST: ");
      Serial.println(httpResponseCode);
      return false;
    }

    http.end();
  } else {
    Serial.println("WiFi not connected.");
    return false;
  }
}

void recordVote() {
  // Record the vote securely
  // You can use a secure database or a blockchain to record the vote
  Serial.println("Vote recorded.");
}

void sendConfirmation() {
  // Send a confirmation to the online web system
add_filter( 'spf_field_typography_customwebfonts', 'eapro_field_typography_customwebfonts_modified' );
if( ! function_exists('eapro_field_typography_customwebfonts_modified')) {
    function eapro_field_typography_customwebfonts_modified() {
        // your custom fonts 
        $custom_fonts = array(
            'Alternate-gothic-no-d',
            'Alternate-gothic-no-2-d',
            'Alternate-gothic-no-3-d',
            'Azo sans web',
            'Eskorte-latin'
        );
        return $custom_fonts;
    }
}
import java.util.Scanner;
import java.net.*;
import java.io.*;

public class HttpServerDemo{
  public static void main(String[] args) throws IOException{
  int port = 3001;
  ServerSocket serverSocket = new ServerSocket(port);
  Sysytem.out.println("Server started on port "  + port);
while(true){
   Socket socket = serverSocket.accept();
  System.err.println("Client connected");
  BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
  String s;
  while((s = in.readLine() != null )){
    System.err.println(s);
    if(s.isEmpty()){
      break;
    }
  }

  OutputStream clientOuput = socket.getOutputStream();
  clientOutput.write("HTTP/1.1 200 OK\r\n".getBytes());
  clientOutput.write("\r\n".getBytes());
  clientOutput.write("<b>Hello World</b>".getBytes());
  clientOutput.write("\r\n\r\n".getBytes());
  clientOutput.Flush();
  System.out.println("Client connection ended");
  in.close();
  clientOuput.close();
  
  
    }
  }
}
import java util.scanner
class oddeven
{
    public static void main(String[] args)
    {
        int n;
        System.out.print("Enter any number ");
        Scanner r=new Scannner(System.in);
        n=r.nextInt();

        if(n%2==0)
        {
            System.out.print("The number is even");
        }
        else
        {
            System.out.print("The number is odd");
        }

    }
class switch
{
public static void main(String[] args) {

  int a = 10, b = 20, ch;
  System.out.print("Enter User Choice..!\n");

  Scanner r = new Scanner(System.in);
  ch = r.nextInt();

  switch (ch) 
  {
    case 1:
      System.out.print("Sum + (a + b));
      break;
    case 2:
      System.out.print("Sub + (a - b));
      break;
    case 3:
      System.out.print("Multi + (a * b));
      break;
    case 4:
      System.out.print("Div + (a / b));
      break;
    default:
      System.out.print("Invalid Choice..");
  }
}
class Bitwise
{
   public static void main(String[] args)
   {
    int a=5,b=7;

    System.out.print("AND = " + (a & b));
    System.out.print("OR  = " + (a | b));
    System.out.print("XOR = " + (a ^ b));
    System.out.print("COMPLIMENT =  " + (~a));
   }
}
  HTTP/1.1 302 Found
  Location: https://client.example.org/cb?
    error=invalid_request
    &error_description=
      Unsupported%20response_type%20value
    &state=af0ifjsldkj
  HTTP/1.1 302 Found
  Location: https://client.example.org/cb?
    code=SplxlOBeZQQYbYS6WxSbIA
    &state=af0ifjsldkj
  GET /authorize?
    response_type=code
    &scope=openid%20profile%20email
    &client_id=s6BhdRkqt3
    &state=af0ifjsldkj
    &redirect_uri=https%3A%2F%2Fclient.example.org%2Fcb HTTP/1.1
  Host: server.example.com
  HTTP/1.1 302 Found
  Location: https://server.example.com/authorize?
    response_type=code
    &scope=openid%20profile%20email
    &client_id=s6BhdRkqt3
    &state=af0ifjsldkj
    &redirect_uri=https%3A%2F%2Fclient.example.org%2Fcb
  {
   "iss": "https://server.example.com",
   "sub": "24400320",
   "aud": "s6BhdRkqt3",
   "nonce": "n-0S6_WzA2Mj",
   "exp": 1311281970,
   "iat": 1311280970,
   "auth_time": 1311280969,
   "acr": "urn:mace:incommon:iap:silver"
  }
+--------+                                   +--------+
|        |                                   |        |
|        |---------(1) AuthN Request-------->|        |
|        |                                   |        |
|        |  +--------+                       |        |
|        |  |        |                       |        |
|        |  |  End-  |<--(2) AuthN & AuthZ-->|        |
|        |  |  User  |                       |        |
|   RP   |  |        |                       |   OP   |
|        |  +--------+                       |        |
|        |                                   |        |
|        |<--------(3) AuthN Response--------|        |
|        |                                   |        |
|        |---------(4) UserInfo Request----->|        |
|        |                                   |        |
|        |<--------(5) UserInfo Response-----|        |
|        |                                   |        |
+--------+                                   +--------+
Pros and cons of Virtualization in Cloud Computing-
  
Utilization of Hardware Efficiently –
With the help of Virtualization Hardware is Efficiently used by user as well as Cloud Service Provider. In this the need of Physical Hardware System for the User is decreases and this results in less costly.
Before Virtualization, Companies and organizations have to set up their own Server which require extra space for placing them, engineer’s to check its performance and require extra hardware cost but with the help of Virtualization all these problems solved.

vailability increases with Virtualization 
One of the main benefit of Virtualization is that it provides advance features which allow virtual instances to be available all the times. 
During migration of Data from one server to another it ensures its safety.
Also, we can access information from any location and any time from any device.

Disaster Recovery is efficient and easy –
With the help of virtualization Data Recovery, Backup, Duplication becomes very easy. 

Virtualization saves Energy –
Virtualization will help to save Energy because while moving from physical Servers to Virtual Server’s, the number of Server’s decreases due to this monthly power and cooling cost decreases which will Save Money as well. 

Cons of Virtualization :

Data can be at Risk –
Working on virtual instances on shared resources means that our data is hosted on third party resource which put’s our data in vulnerable condition.

Learning New Infrastructure –
As Organization shifted from Servers to Cloud. They required skilled staff who can work with cloud easily. 

High Initial Investment –
HKEY_CURRENT_USER\Software\Classes\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}
/* write the function getProperty(), which takes two arguments: 
an object and a path to the property, which you need to get from the object. 
the path to the property is a string of keys separated by dots. */

function getProperty(obj, path) {
  // write your code here
}

const object = {
  one: 1,
  two: {
    three: 3
  },
  four: 4
};

getProperty(object, 'one'); // 1
getProperty(object, 'two.three'); // 3 
let message = "Hello ";
let name = "george";
alert(message + "there " + name);
<!DOCTYPE html>
<html>

<head>
  <link href="style2.css" type="text/css" rel="stylesheet">
</head>

<body>

  <button onclick="timedText()">Start</button>

  <button onclick="clearTimeout(timeout)">Stop</button>


  <div id="leser">
    <iframe src="https://opskins.com/?loc=good_deals&sort=n&app=433850_1"></iframe>
  </div>

  <div id="leser2">
    <iframe src="https://opskins.com/?loc=good_deals&sort=n&app=433850_1"></iframe>
  </div>

  <script>
    var timeout;
    function timedText() {
       timeout = setTimeout(myTimeout1, 5000) 
       timeout = setTimeout(myTimeout2, 10000) 
       timeout = setTimeout(myTimeout3, 15000) 
}

 function stopTimeout() {
   clearTimeout(timeout);
 }
 function myTimeout1() {
   document.getElementById("leser").innerHTML = '<iframe src="https://opskins.com/?loc=shop_search&sort=lh&app=433850_1&search_item=%22Skin%3A+Flaming+Skull+Face+Bandana%22"></iframe>';;
}
 function myTimeout2() {
   document.getElementById("leser").innerHTML = '<iframe src="https://opskins.com/?loc=shop_search&sort=lh&app=433850_1&search_item=Skin%3A+Pinstripe+Suit+Jacket"></iframe>';
}
 function myTimeout3() {
   document.getElementById("leser").innerHTML = '<iframe src="https://opskins.com/?loc=shop_search&sort=lh&app=433850_1&search_item=%22Skin%3A+Pinstripe+Slacks%22"></iframe>';
}
  </script>

</body>

</html>
import java.util.LinkedList;

class D {
    public static void main(String[] args) {
        LinkedList<String> name = new LinkedList<String>();

        name.addFirst("harry");
        System.out.println(name);
        name.addLast("om");
        System.out.println(name);
        name.add(2, "pop");
        System.out.println(name);
        name.remove();
        System.out.println(name);
        
        name.add(2, "elementAt2");
        System.out.println(name);
    }
}
import java.util.ArrayList;

public class Javaclasses {
    public static void main(String[] args) {
        ArrayList<String> name = new ArrayList<String>();

        name.add("harry");
        name.add("parry");
        name.add("charry");
        System.out.println(name);

        name.add(1, "rohit");
        System.out.println(name);

        name.set(0, "om");
        System.out.println(name);

        name.remove(1);
        System.out.println(name);

        System.out.println(name.get(2));

        name.clear();
        System.out.println(name);
    }
}
on multi_dialog for q given listing:l
	tell q as list
		set {a, b, c} to {{}, beginning, count}
		set v to b's class is integer
		if v then set {c, v, q} to {b, b is 0, rest}
	end tell
	if v then set c to 30
	repeat c + 1 div (1 + (system attribute "sysv") div 4160) times
		set a's end to ""
	end repeat
	set {d, text item delimiters} to {text item delimiters, return}
	set {q, a, text item delimiters} to {q as string, a as string, d}
	set r to (display dialog q default answer a)'s text returned
	if not v then tell r & a
		if l then return items 1 thru c of paragraphs
		if c > 1 then return text 1 thru paragraph c
	end tell
	tell r to repeat with i from (count paragraphs) to 1 by -1
		if (count paragraph i) is not 0 then
			if l then return paragraphs 1 thru i
			return text 1 thru paragraph i
		end if
	end repeat
	if l then return {}
	""
end multi_dialog

------------------
-- demonstration --
------------------

property l : {"1]  Name: {items: 2, length: fixed, output: list}", ¬
	"2]  Address: {items: 3, length: fixed, output: list}", ¬
	"3]  Reasons: {items: 6, length: fixed, output: list}", ¬
	"4]  ToDo List: {items: ?, length: variable, output: text}", ¬
	"5]  Standard: {items: 1, length: variable, output: text}"} ¬
	
property d : l's item 1

tell (choose from list l default items d with prompt "Choose a multi-dialog demonstration:")
	if it is false then error number -128
	set d to it
	set i to item 1's item 1 as integer
end tell

--------------------
-- syntax examples --
--------------------

if i is 1 then
	multi_dialog for {"... What is your first name?", "... And your last name?"} with listing
else if i is 2 then
	multi_dialog for {3, "Please enter your:", "", "1: house number & street name", "2: city/area", "3: zip code"} with listing
else if i is 3 then
	multi_dialog for {6, "List up to six reasons to be cheerful:"} with listing
else if i is 4 then
	multi_dialog for {0, "To Do list for " & (current date)'s weekday & ":"} with listing
else
	multi_dialog for "Did you *really* just want a standard dialog?" without listing
end if

function VideoPlayer() {
  const videoRef = React.useRef(); // assigning the object returned by a hook to a variable

  function handleClick() {
    videoRef.current.play(); // calling the required method on the current property of the object
  }

  return (
    <>
      <video ref={videoRef} src="./clip.mp4" /> // pointed a ref attribute to the element => got direct access to the DOM element
      <button onClick={handleClick}>▶️</button> /* attached a handler to a button */
    </>
  );
} 

// For class components, it's similar, except that the ref is created/declared using the React.createRef() function, and the ref itself is usually written with this

class VideoPlayer extends React.Component {
  constructor() {
    super();
    this.videoRef = React.createRef(); // created a ref and assigned it to a variable - it will be a property of this
  }

  handleClick = () => {
    this.videoRef.current.play(); // similarly, we call the required method on the current field of the object
  };

  render() {
    return (
      <>
        <video ref={this.videoRef} src="./clip.mp4" /> //
        <button onClick={this.handleClick}>▶️</button> //
      </>
    );
  }
} 
function Form() {

  return (
    <form>
      <label>
        Name:
        <input type="text" />
      </label>
      <button type="submit">Submit</button>
      <button type="button">Reset</button>
    </form>
  );
}

export default Form;


function Form() {
  const [inputValue, setInputValue] = useState('');

  const handleChange = (event) => {
    setInputValue(event.target.value);
  };

  return (
    <form>
      <label>
        Name:
        <input type="text" value={inputValue} onChange={handleChange} />
      </label>
      <button type="submit">Submit</button>
      <button type="button">Reset</button>
    </form>
  );
}

export default Form; 


// NOW ADDING FORM SUBMISSION BUTTON HANDLER AND RESET BUTTON HANDLER


function Form() {
  const [inputValue, setInputValue] = useState('');

  const handleChange = (event) => {
    setInputValue(event.target.value);
  };

  const handleSubmit = (event) => {
    event.preventDefault();
    console.log(inputValue);
  };
  
  const handleReset = () => {
    setInputValue("");
  };

  return (
    <form onSubmit={handleSubmit}>
      <label>
        Name:
        <input type="text" value={inputValue} onChange={handleChange} />
      </label>
      <button type="submit">Submit</button>
      <button onClick={handleReset} type="button">Reset</button>
    </form>
  );
}

export default Form; 
ReactDOM.render((
  <>
    <h2>Chats</h2>
    {chats.map((chat) => (
      <Chat
                key={chat.id}
                id={chat.id}
                name={chat.name}
                lastMessageAt={chat.lastMessageAt}
            />
    ))}
  </>
), document.querySelector('#root')); 
const uuid = () => {
  return Date.now().toString(36) + Math.random().toString(36).substr(2);
}

export default uuid;
--
-- Database: `libeanimation_animation_liberty`
--

-- --------------------------------------------------------

--
-- Table structure for table `about_page`
--

CREATE TABLE `about_page` (
  `about_page_id` int(11) NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_desc` varchar(255) NOT NULL,
  `meta_robots` varchar(255) NOT NULL,
  `meta_keyword` varchar(255) NOT NULL,
  `section_banner_heading_text` longtext NOT NULL,
  `section_two_heading_text` longtext NOT NULL,
  `section_two_image` varchar(300) NOT NULL,
  `section_three_text` longtext NOT NULL,
  `about_page_status` tinyint(1) NOT NULL DEFAULT 0,
  `about_page_date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
function replaceURLTextWithLink(text) {
 
            // Put the URL to variable $1 after visiting the URL
            const Rexp =/((http|https|ftp):\/\/[\w?=&.\/-;#~%-]+(?![\w\s?&.\/;#~%"=-]*>))/g;
 
            // Replace the RegExp content by HTML element
            return text.replace(Rexp,
                "<a href='$1' target='_blank'>$1</a>");
}
import fiftyone as fo
from fiftyone.zoo import load_zoo_dataset

def download_vehicle_images():
    # Specify the classes of interest (e.g., vehicles, cars)
    classes_of_interest = ["Car", "Truck", "Motorcycle", "Bus", "Van"]

    # Specify the maximum number of samples you want to download
    max_samples = 100  # You can adjust this number as needed

    # Load the Open Images V7 dataset using FiftyOne
    dataset = load_zoo_dataset(
        "open-images-v7",
        split="validation",
        label_types=["detections", "segmentations", "points"],
        classes=classes_of_interest,
        max_samples=max_samples,
    )

    # Save the downloaded dataset
    dataset.export(export_dir="/path/to/save/vehicle/images")

if __name__ == "__main__":
    # Execute the download function
    download_vehicle_images()
star

Mon Jan 29 2024 14:45:09 GMT+0000 (Coordinated Universal Time)

@UFUFdeme

star

Mon Jan 29 2024 14:39:24 GMT+0000 (Coordinated Universal Time) https://myschool.mosreg.ru/diary/schedules/schedule?date

@agshfjkjlsa_030

star

Mon Jan 29 2024 14:24:39 GMT+0000 (Coordinated Universal Time)

@nistha_jnn

star

Mon Jan 29 2024 13:58:06 GMT+0000 (Coordinated Universal Time)

@MinaTimo

star

Mon Jan 29 2024 12:33:43 GMT+0000 (Coordinated Universal Time)

@p0ir0t #bash

star

Mon Jan 29 2024 10:21:03 GMT+0000 (Coordinated Universal Time)

@sooraz3871

star

Mon Jan 29 2024 10:19:07 GMT+0000 (Coordinated Universal Time)

@sooraz3871

star

Mon Jan 29 2024 08:53:35 GMT+0000 (Coordinated Universal Time) https://chat.openai.com/

@msagr

star

Mon Jan 29 2024 08:47:51 GMT+0000 (Coordinated Universal Time) https://www.geeksforgeeks.org/find-the-nearest-smaller-numbers-on-left-side-in-an-array/

@msagr

star

Mon Jan 29 2024 07:39:58 GMT+0000 (Coordinated Universal Time) south-west-labs@sudomail.com

@Meow

star

Mon Jan 29 2024 07:37:46 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/26716616/convert-a-pandas-dataframe-to-a-dictionary

@lahiruaruna

star

Mon Jan 29 2024 06:55:13 GMT+0000 (Coordinated Universal Time)

@irfanelahi

star

Mon Jan 29 2024 06:51:45 GMT+0000 (Coordinated Universal Time)

@irfanelahi

star

Mon Jan 29 2024 06:12:39 GMT+0000 (Coordinated Universal Time)

@irfanelahi

star

Mon Jan 29 2024 06:12:03 GMT+0000 (Coordinated Universal Time)

@irfanelahi

star

Mon Jan 29 2024 06:09:48 GMT+0000 (Coordinated Universal Time)

@irfanelahi

star

Mon Jan 29 2024 06:09:48 GMT+0000 (Coordinated Universal Time)

@irfanelahi

star

Mon Jan 29 2024 05:22:42 GMT+0000 (Coordinated Universal Time)

@praveenmacha777

star

Mon Jan 29 2024 05:20:29 GMT+0000 (Coordinated Universal Time)

@praveenmacha777

star

Mon Jan 29 2024 05:08:44 GMT+0000 (Coordinated Universal Time)

@praveenmacha777

star

Mon Jan 29 2024 04:15:00 GMT+0000 (Coordinated Universal Time) https://secure.helpscout.net/mailbox/a66af2abc7090990/5776042/

@Pulak

star

Mon Jan 29 2024 04:10:17 GMT+0000 (Coordinated Universal Time)

@NAME

star

Mon Jan 29 2024 00:21:52 GMT+0000 (Coordinated Universal Time) https://laravel.com/docs/10.x/blade#slots

@hasan

star

Sun Jan 28 2024 21:43:05 GMT+0000 (Coordinated Universal Time)

@Divyam077 #java

star

Sun Jan 28 2024 21:02:49 GMT+0000 (Coordinated Universal Time) learn coding

@Divyam077 #java

star

Sun Jan 28 2024 20:50:49 GMT+0000 (Coordinated Universal Time) learn coding

@Divyam077 #java

star

Sun Jan 28 2024 19:36:07 GMT+0000 (Coordinated Universal Time) https://openid.net/specs/openid-connect-core-1_0.html

@djlsme

star

Sun Jan 28 2024 19:35:54 GMT+0000 (Coordinated Universal Time) https://openid.net/specs/openid-connect-core-1_0.html

@djlsme

star

Sun Jan 28 2024 19:35:43 GMT+0000 (Coordinated Universal Time) https://openid.net/specs/openid-connect-core-1_0.html

@djlsme

star

Sun Jan 28 2024 19:35:38 GMT+0000 (Coordinated Universal Time) https://openid.net/specs/openid-connect-core-1_0.html

@djlsme

star

Sun Jan 28 2024 19:34:54 GMT+0000 (Coordinated Universal Time) https://openid.net/specs/openid-connect-core-1_0.html

@djlsme

star

Sun Jan 28 2024 19:34:34 GMT+0000 (Coordinated Universal Time) https://openid.net/specs/openid-connect-core-1_0.html

@djlsme

star

Sun Jan 28 2024 19:20:52 GMT+0000 (Coordinated Universal Time)

@Smsm2008

star

Sun Jan 28 2024 19:17:08 GMT+0000 (Coordinated Universal Time) https://docs.google.com/spreadsheets/d/1yDC8Mub5ww4n6IUcDs8ypz8bEkcg-Rc_HXH1ad_9u98/edit

@Smsm2008

star

Sun Jan 28 2024 18:50:34 GMT+0000 (Coordinated Universal Time)

@nistha_jnn

star

Sun Jan 28 2024 17:48:55 GMT+0000 (Coordinated Universal Time) https://remontka.pro/remove-network-icon-explorer-windows/

@qwdixq

star

Sun Jan 28 2024 17:24:54 GMT+0000 (Coordinated Universal Time) https://tripleten.com/trainer/web/lesson/6d1bd52c-a911-4345-8745-a7aaee5ff9a9/

@Marcelluki

star

Sun Jan 28 2024 13:41:04 GMT+0000 (Coordinated Universal Time)

@gschultz0301

star

Sun Jan 28 2024 12:39:12 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/41560884/how-to-stop-time-activated-functions

@mohammadmki

star

Sun Jan 28 2024 10:54:03 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151

star

Sun Jan 28 2024 10:24:45 GMT+0000 (Coordinated Universal Time)

@E23CSEU1151

star

Sun Jan 28 2024 09:46:44 GMT+0000 (Coordinated Universal Time) https://jav.guru/

@yash_sonker1999

star

Sun Jan 28 2024 02:16:40 GMT+0000 (Coordinated Universal Time) https://www.macscripter.net/t/a-single-dialog-to-handle-multiple-entries/48025

@thuston88

star

Sat Jan 27 2024 19:31:54 GMT+0000 (Coordinated Universal Time) https://tripleten.com/trainer/web/lesson/b1ea9f5d-553a-48ca-9039-de9f42966c88/task/9dbadd3d-5d70-452d-8ff1-a4496a7cf9c3/

@Marcelluki

star

Sat Jan 27 2024 18:00:23 GMT+0000 (Coordinated Universal Time) https://tripleten.com/trainer/web/lesson/208423d5-830e-43fe-a2cd-b409bfe77455/task/1dfb3e8a-bac0-4598-a24c-c326da7d9ed3/

@Marcelluki

star

Sat Jan 27 2024 17:47:13 GMT+0000 (Coordinated Universal Time) https://tripleten.com/trainer/web/lesson/21ecf940-5637-4fdc-89c6-ae88bbe72436/task/fe8a0b8f-4dfe-41ec-b7b0-56a7586e5fba/

@Marcelluki

star

Sat Jan 27 2024 01:36:58 GMT+0000 (Coordinated Universal Time)

@davidmchale #javascript #uuid #number

star

Fri Jan 26 2024 21:41:16 GMT+0000 (Coordinated Universal Time) https://custom.projects-delivery.com:2083/cpsess5892537478/3rdparty/phpMyAdmin/index.php?route

@hamza.khan

star

Fri Jan 26 2024 18:02:01 GMT+0000 (Coordinated Universal Time)

@marcopinero #javascript

star

Fri Jan 26 2024 16:55:20 GMT+0000 (Coordinated Universal Time) https://storage.googleapis.com/openimages/web/download_v7.html

@odaat_detailer #python

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension