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 | |
function get_tag_cloud() { | |
$args = array( | |
'smallest' => 15, | |
'largest' => 15, | |
'unit' => 'px', | |
'number' => 15, | |
'format' => 'flat', | |
'separator' => "\n #", |
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"> | |
<meta name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Home-Page</title> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous"> | |
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,300i,500,700,900" rel="stylesheet"> |
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
# deb cdrom:[Debian GNU/Linux 2017.2 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20170917-01:51]/ kali-rolling contrib main non-free | |
#deb cdrom:[Debian GNU/Linux 2017.2 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20170917-01:51]/ kali-rolling contrib main non-free | |
deb http://http.kali.org/kali kali-rolling main contrib non-free | |
# For source package access, uncomment the following line | |
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free | |
deb http://http.kali.org/kali sana main non-free contrib | |
deb http://security.kali.org/kali-security sana/updates main contrib non-free | |
# For source package access, uncomment the following line |
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
deb http://mirror.switch.ch/ftp/mirror/ubuntu/ xenial-updates main restricted | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted | |
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu | |
## team. Also, please note that software in universe WILL NOT receive any | |
## review or updates from the Ubuntu security team. | |
deb http://mirror.switch.ch/ftp/mirror/ubuntu/ xenial universe | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe | |
deb http://mirror.switch.ch/ftp/mirror/ubuntu/ xenial-updates universe | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe |
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
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: mrtg | |
# Required-Start: | |
# Required-Stop: | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: mrtg init script | |
# Description: This file is used to start, stop, restart, and determined status of the mrtg daemon. | |
# Author: iceflatline.com, azizozbek.ch |
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
<script> | |
function kapat() { | |
$('#info').fadeOut(500); | |
} | |
function gonder() { | |
$('.e_name').hide(); | |
$('.e_email').hide(); | |
$('.e_sub').hide(); |
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"> | |
<h1>Php Ajax Contact Form</h1> | |
<form method="post" class="form-horizontal" action="send.php" id="contactForm" > | |
<div class="form-group"> | |
<label for="name"> Name </label><br /> | |
<input type="text" id="name" name="name" /> | |
<span class="alert alert-danger e_name">*Name.</span> | |
</div> | |
<div class="form-group"> | |
<label for="email">Email</label><br /> |
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
<style type='text/css'> | |
.e_name, .e_email, .e_email-1, .e_sub, .e_mes { display:none;} | |
</style> |