Skip to content

Instantly share code, notes, and snippets.

View tutweb's full-sized avatar

Tutorial Web Design tutweb

  • Tutweb
  • Indonesia
View GitHub Profile
@tutweb
tutweb / youtube-thumbnail.php
Created May 12, 2014 18:17
Menampilkan Gambar Thumbnail Youtube Dengan PHP
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Menampilkan Gambar Thumbnail Youtube Dengan PHP</title>
</head>
<body>
<?php
@tutweb
tutweb / animasi-background.html
Created August 15, 2014 03:35
Membuat Animasi Background Website Dengan CSS3
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animasi Background CSS3</title>
<style>
body{
background-color: #f1c40f;
-webkit-animation: color 5s ease-in 0s infinite alternate running;
-moz-animation: color 5s linear 0s infinite alternate running;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo CSS Shapes</title>
<style>
*{
padding: 0;
margin: 0;
}
@tutweb
tutweb / animasi-background-scroll.html
Last active August 29, 2015 14:06
Animasi Bakcground Scroll
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animasi Background Ketika Scroll</title>
<style>
*{
padding: 0;
margin: 0;
@tutweb
tutweb / html5-starter-template.html
Created January 24, 2013 17:29
html5 starter template
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Starter Template</title>
</head>
<body>
<header>
<hgroup>
@tutweb
tutweb / disable-link-css.html
Created February 12, 2013 14:54
Disable link using css
@tutweb
tutweb / CSS Disable Text Selection
Created February 18, 2013 20:45
Disable Text Selection With CSS
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Disable Text Selection With CSS</title>
<style>
.website-content{
-webkit-user-select: none;
-khtml-user-select: none;
@tutweb
tutweb / disable-all.html
Created February 28, 2013 07:41
Disable Copy All Text
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Disable All Text</title>
<style>
body{
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
@tutweb
tutweb / disable-partial.html
Last active December 14, 2015 07:59
Disable select text on a div
<div class="content">
<h2>Disable Only One Div <small><a href="http://www.tutorial-webdesign.com/css-disable-select-text">http://www.tutorial-webdesign.com</a></small></h2>
<div class="entry">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Non vero ipsum minima minus impedit voluptatum blanditiis laboriosam deserunt repellat fugiat quaerat quibusdam optio est sed odio eum ad laudantium accusantium.
</div>
<div class="entry nocopy">
<h3>Disabled</h3>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Non vero ipsum minima minus impedit voluptatum blanditiis laboriosam deserunt repellat fugiat quaerat quibusdam optio est sed odio eum ad laudantium accusantium.
</div>
<div class="entry">
@tutweb
tutweb / grayscale-image.html
Created March 3, 2013 15:52
Grayscale image with css3 filter
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS3 Filter Grayscale</title>
<style>
.grayscale, .normal, img{
width: 300px;
}
.grayscale{