Skip to content

Instantly share code, notes, and snippets.

View Sonia-Shurmi's full-sized avatar

Mst Sonia Akter Sonia-Shurmi

View GitHub Profile
@Sonia-Shurmi
Sonia-Shurmi / gist:34b5148d3cf8f88a85ff259b9c5b469c
Created April 5, 2020 01:37
Programming Quiz: Laugh it Off 2 (5-2)
/*
* Programming Quiz: Laugh it Off 2 (5-2)
*/
function laugh(num) {
var ha = '';
for (i = 0; i < num; i++) {
ha = ha + 'ha';
}
var num = 99;
var bottle = " bottle ";
var bottles = " bottles ";
while (num >= 1) {
if (num >= 3 ) { // start checking on >=3, lyrics are different in 2 and 1
console.log(num + bottles +"of juice on the wall! " + num + bottles +"of juice! Take one down, pass it around... " + (num - 1) + bottles + "of juice on the wall!");
} else if (num === 2) {
console.log(num + bottles+"of juice on the wall! " + num + bottles+"of juice! Take one down, pass it around... " + (num - 1 ) + bottle + "of juice on the wall!");
} else if (num === 1) {
console.log(num + bottle +"of juice on the wall! " + num + bottle+"of juice! Take one down, pass it around... 0" + bottles + "of juice on the wall!");
var x = 1;
while (x <= 20) {
if((x % 3) === 0){
console.log("Julia");
}else if((x % 5) === 0){
console.log("James");
}else if(((x % 3) === 0) && ((x % 5) === 0)){
console.log("JuliaJames");
}else {
<section class="single-product">
<div class="container">
<div class="product-thumb">
<img src="media/images/woocommerce/product-detail.png" class="attachment-shop_catalog" alt="Product">
</div>
<div class="single-product-details">
<h2 class="product_title entry-title">Event tee shirt(Maroon)</h2>
<p class="price">
<ins>
<span class="woocommerce-Price-amount amount">
<section class="woocommerce-cart cart-content-area">
<div class="container">
<article class="type-page hentry">
<div class="entry-content">
<div class="woocommerce">
<form class="woocommerce-cart-form" action="#" method="post">
<table class="woocommerce-cart-form__contents">
<thead>
<tr>
<th class="product-remove"></th>
<div class="woocommerce columns-4 ">
<ul class="products">
<li class="product">
<a href="#" class="woocommerce-LoopProduct-link">
<div class="product-thumb">
<img src="media/images/woocommerce/tshirt-one.png" class="attachment-shop_catalog" alt="Product">
</div>
<h2 class="woocommerce-loop-product__title">Event tee shirt(Maroon)</h2>
<div class="star-rating">
@Sonia-Shurmi
Sonia-Shurmi / svgcode
Created August 10, 2017 07:48
img to svg coverter code
// Convert All Image to SVG
$('img.svg').each(function() {
var $img = $(this),
imgID = $img.attr('id'),
imgClass = $img.attr('class'),
imgURL = $img.attr('src');
$.get(imgURL, function(data) {
// Get the SVG tag, ignore the rest
var $svg = $(data).find('svg');
@Sonia-Shurmi
Sonia-Shurmi / hovertab
Created August 9, 2017 18:03
mousehover tab with jquery ui
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Tabs - Open on mouseover</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
@Sonia-Shurmi
Sonia-Shurmi / tab
Created August 8, 2017 07:25
Bootstrap tab customize murkup
<div class="tab_area">
<ul class="tabmenu">
<li class="active">
<a href="#creative" data-toggle="tab">menu one</a>
</li>
<li>
<a href="#consultation" data-toggle="tab">menu two</a>
</li>
<li>
<a href="#marketing" data-toggle="tab">menu three</a>
@Sonia-Shurmi
Sonia-Shurmi / comment section
Last active August 7, 2017 06:15
Wordpress friendly murkup for "Blog Comment" Section
<div id="comments" class="comment-area">
<div class="comments-title">
<h2>Comments (03)</h2>
</div>
<ul class="comment-list">
<li class="comment">
<article class="comment-body">
<footer class="comment-meta">
<div class="comment-author"></div>