This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Document Title</title> | |
<link rel="stylesheet" href=""> | |
</head> | |
<body> | |
<h1>Hello World1</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Browser Sync", | |
"version": "1.0.0", | |
"description": "This is a browser sync test script", | |
"main": "index.js", | |
"author": "Anis", | |
"license": "MIT", | |
"scripts": { | |
"browsersync": "browser-sync start --server --files '**/*.css, **/*.html, **/*.js' --directory --port 7777" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"presets": ["env"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="filler anchor" id="anchor1">anchor1</div> | |
<div class="links"> | |
<a id="anchor1Link" href="#anchor1">Anchor 1</a> | |
<a id="anchor2Link" href="#anchor2">Anchor 2</a> | |
<a id="anchor3Link" href="#anchor3">Anchor 3</a> | |
<a id="anchor4Link" href="#anchor4">Anchor 4</a> | |
</div> | |
<div class="longText"> | |
<p>This is a line, and there will be more after me.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## How to install mcrypt in php7.2 | |
## | |
## https://lukasmestan.com/install-mcrypt-extension-in-php7-2/ | |
## | |
# | |
# Check version php and pecl | |
# | |
php -v # if default php is not 7.2 then use /usr/bin/php7.2 instead php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="myForm" action="#" method="post"> | |
<div> | |
<label for="name">Text Input:</label> | |
<input type="text" name="name" id="name" value="" tabindex="1"> | |
</div> | |
<div> | |
<h4>Radio Button Choice</h4> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="author" content=""> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h2 Toggle 'em | |
ul.tg-list | |
li.tg-list-item | |
h4 Light | |
input#cb1.tgl.tgl-light(type = "checkbox") | |
label.tgl-btn(for = "cb1") | |
li.tg-list-item | |
h4 iOS | |
input#cb2.tgl.tgl-ios(type = "checkbox") | |
label.tgl-btn(for = "cb2") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#edit something in git repo | |
git checkout -b newBranch | |
#first creating new branch | |
#then add/edit/delete some file | |
#then if is ok then switch to master branch | |
#and merge it | |
git merge newBranch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--ease-in-quad: cubic-bezier(.55, .085, .68, .53); | |
--ease-in-cubic: cubic-bezier(.550, .055, .675, .19); | |
--ease-in-quart: cubic-bezier(.895, .03, .685, .22); | |
--ease-in-quint: cubic-bezier(.755, .05, .855, .06); | |
--ease-in-expo: cubic-bezier(.95, .05, .795, .035); | |
--ease-in-circ: cubic-bezier(.6, .04, .98, .335); | |
--ease-out-quad: cubic-bezier(.25, .46, .45, .94); | |
--ease-out-cubic: cubic-bezier(.215, .61, .355, 1); |
OlderNewer