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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Kunci Konten agar tidak bisa di edit di inspect element - Jurnalweb.com</title> | |
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script> | |
<script src="//cnova.github.io/jquery-lock/release/jquery.lock.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
$(".kunci").lock(); |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Tabel Responsive dengan CSS dan HTML | Jurnalweb.com</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
body { | |
font-family: "Times New Roman", serif; | |
line-height: 1.25; |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Cara menampilkan file PDF di halaman website HTML (EMBED)</title> | |
</head> | |
<body> | |
<embed src="LOKASI_FILE.pdf" width="550" height="600"> </embed> | |
</body> | |
</html> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Show Hide Password dengan Javascript | Jurnalweb.com</title> | |
<meta name="description" content="Cara hide show password dengan javascript agar pengguna bisa melihat dan menyembunyikan teks password form login atau register"/> | |
<meta name="keywords" content="html, javascript, coding, koding, pemrograman, show hide password, js"/> | |
<style> | |
header{ |
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
<?php | |
/* Mengambil file dari hosting lama */ | |
/* File juga bisa diambil dari IP tertentu */ | |
$content = file_get_contents("http://DOMAINLAMA.com/FILE_WEB_SAYA.zip"); | |
/* Menyimpan file di hosting baru. pada folder yang diinginkan */ |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Youtube</title> | |
<style> | |
header h1{font-size:20px;} | |
header p{margin:5px auto} | |
.youtube-container { display: block; /*margin: 20px auto;*/ width: 100%; max-width: 600px; border:1px solid #000; } |
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
<?php | |
/** | |
* Ranking Alexa dengan PHP | |
* | |
* @param string $domain (www.jurnalweb.com) | |
* @return int || void | |
*/ | |
function AlexaRank($domain){ | |
$uri = 'http://data.alexa.com/data?cli=10&dat=snbamz&url='; |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Multiple File Upload dengan PHP | Jurnalweb.com</title> | |
</head> | |
<body> | |
<form action="" method="post" enctype="multipart/form-data"> | |
<input type="file" id="file" name="files[]" multiple="multiple" accept="image/*" /> | |
<input type="submit" value="Upload!"> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Popup</title> | |
<style> | |
body{ | |
font-family: arial, verdana, sans-serif; | |
} |