Create and initialize your a directory for your Express application.
$ mkdir node-knex-demo
$ cd node-knex-demo
$ npm init
Done for the DevWars Weekly Challenge 10.
A Pen by HARUN PEHLİVAN on CodePen.
A Pen by HARUN PEHLİVAN on CodePen.
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- Feel free to use and modify however you like http://AlanSimpson.me --> | |
<title>CSS Dot Leaders</title> | |
<style> | |
ul.dotleaders { | |
list-style: none; | |
padding: 0; | |
/* This width can be whatever you like */ |
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title></title> | |
<style> | |
/* General style, transition occurs when taking mouse pointer of the item */ | |
img.crazy { | |
display: block; | |
margin: 10em auto; | |
/* That code is really just the opposite of the hover code. */ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Drop Cap Example</title> | |
<!-- Feel free to use however you wish http://AlanSimpson.me --> | |
<style> | |
/* This width is just to make the paragraphs narrow, not required in real life */ | |
p { | |
width: 400px; | |
} |
Chào các bạn, trong khuôn khổ bài viết này chúng ta sẽ cùng nhau tạo ra một hồ sơ cá nhân (Profile Card) bằng CSS và HTML. Cùng với những thông tin cơ bản mà bạn muốn hiển thị, hoặc bạn có thể sửa cho phù hợp với bản thân.
A Pen by HARUN PEHLİVAN on CodePen.
// including plugins | |
var gulp = require('gulp') | |
var minifyCSS = require('gulp-minify-css') | |
var autoprefixer = require('gulp-autoprefixer') | |
var gp_concat = require('gulp-concat') | |
var gp_rename = require('gulp-rename') | |
var gp_uglify = require('gulp-uglify') | |
var path = require('path') | |
gulp.task('css-main', function(){ |
Started building my portfolio on CodePen, then finished it off with content locally, so thought I'd add the finishing touches to the CodePen version!
A Pen by HARUN PEHLİVAN on CodePen.
<!DOCTYPE html> | |
<html> | |
<head> | |
<script | |
src="https://code.jquery.com/jquery-3.3.1.min.js" | |
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" | |
crossorigin="anonymous"></script> | |
<script> | |
$(document).ready(function () { |