Made for hackerrank code evaluation
A Pen by Guilherme Maciel on CodePen.
// src/components/Navbar.js | |
import React from 'react'; | |
const Navbar = () => { | |
return ( | |
<nav className="bg-blue-600 sticky top-0 z-50 shadow-md"> | |
<div className="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8"> | |
<div className="relative flex items-center justify-between h-16"> | |
<div className="absolute inset-y-0 left-0 flex items-center sm:hidden"> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
height: 100%; | |
margin: 0; | |
width: 100%; | |
overflow: hidden; | |
} |
Made for hackerrank code evaluation
A Pen by Guilherme Maciel on CodePen.
A Pen by Web Dev Simplified on CodePen.
<?php | |
//simple class to convert number to words in php based on http://www.karlrixon.co.uk/writing/convert-numbers-to-words-with-php/ | |
if ( !class_exists('NumbersToWords') ){ | |
/** | |
* NumbersToWords | |
*/ | |
class NumbersToWords{ | |
public static $hyphen = '-'; | |
public static $conjunction = ' and '; |
function create_subdomain($subDomain,$cPanelUser,$cPanelPass,$rootDomain) { | |
// $buildRequest = "/frontend/x3/subdomain/doadddomain.html?rootdomain=" . $rootDomain . "&domain=" . $subDomain; | |
$buildRequest = "/frontend/x3/subdomain/doadddomain.html?rootdomain=" . $rootDomain . "&domain=" . $subDomain . "&dir=public_html/subdomains/" . $subDomain; | |
$openSocket = fsockopen('localhost',2082); | |
if(!$openSocket) { | |
return "Socket error"; | |
exit(); |
Around 85% of visitors leave an online store without buying an item. Among many reasons, lack of trust, engagement, and authenticity prevents new visitors from placing an order. Built from the concept of Social Proof, Sales Pop plugin helps you combat the 85% rate of site abandonment with recent sales notifications.
A Pen by Nwankwo Chibuike Samuel on CodePen.
<section class="avenue-messenger"> | |
<div class="menu"> | |
<div class="items"><span> | |
<a href="#" title="Minimize">—</a><br> | |
<!-- | |
<a href="">enter email</a><br> | |
<a href="">email transcript</a><br>--> | |
<a href="#" title="End Chat">✕</a> | |
</span></div> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Page Title</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body { | |
font-family: Arial, Helvetica, sans-serif; | |
} | |
.flip-card { |