This file contains hidden or 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, initial-scale=1"> | |
<title>First International Debt Collection</title> | |
<link rel="stylesheet" href="css/normalize.css"> | |
<link rel="stylesheet" href="css/style.css"> | |
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> | |
</head> |
This file contains hidden or 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 | |
print_r($_POST); | |
$message=""; | |
$message .= " " . $_POST["Your_Name"]." "; | |
$message .= " " . $_POST["Debt_Problem"]." "; | |
$message .= " " . $_POST["Work_Phone"]." "; | |
$message .= " " . $_POST["Home_Phone"]." "; | |
$message .= " " . $_POST["Fax"]." "; | |
$message .= " " . $_POST["Mobile"]." "; |
This file contains hidden or 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 | |
print_r($_POST); | |
$message=""; | |
$message .= " " . $_POST["Your_Name"]." "; | |
$message .= " " . $_POST["Debt_Problem"]." "; | |
$message .= " " . $_POST["Work_Phone"]." "; | |
$message .= " " . $_POST["Home_Phone"]." "; | |
$message .= " " . $_POST["Fax"]." "; | |
$message .= " " . $_POST["Mobile"]." "; |
This file contains hidden or 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 | |
print_r($_POST); | |
$headers = 'MIME-Version: 1.0' . "\r\n"; | |
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; | |
$message=""; | |
$message .= " " . $_POST["Your_Name"]." "; | |
$message .= " " . $_POST["Debt_Problem"]." "; |
This file contains hidden or 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 action="action_page.php" method="post" name="theform" class="form" id="forma"> | |
<div class="item"> | |
<p><span>*</span> Your name:</p> | |
<input type="text" name="Your Name" value="" class="input-first-name validate[required]"> | |
</div> | |
<div class="item"> | |
<p><span>*</span> Debt problem:</p> | |
<input type="text" name="Debt Problem" value="" class="width input-first-name validate[required]"> |
This file contains hidden or 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
var question = prompt("Камень, ножницы или бумага?", "Камень Ножницы Бумага"); | |
var rndnubmer = Math.random(); | |
if (rndnubmer < 0.34) { | |
rndnubmer = "Камень"; |
This file contains hidden or 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
<!-- Content --> | |
<section class="content"> | |
<div class="col-12 cf"> | |
<div class="col-3"> | |
<article> | |
<figure> | |
<img src="img/фото4.jpg"> | |
<figcaption> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p> |
This file contains hidden or 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
table { | |
border: 1px solid #ccc; | |
} | |
table tr:nth-child(2n-1) { | |
background: #fbfbfb; | |
} | |
table tr:first-child { | |
background: #65B0E6; |
This file contains hidden or 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
<iframe src="https://www.google.com/maps/embed?pb=!1m0!3m2!1sen!2s!4v1427726259281!6m8!1m7!1sLRgYKxhBhPIAAAQYn8tkwQ!2m2!1d39.215047!2d9.112575!3f132.45!4f-6.349999999999994!5f0.7820865974627469" width="100%" height="600" frameborder="0" style="border:0"></iframe> |
This file contains hidden or 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
jQuery(".hand-top").click(function() { | |
jQuery('html, body').animate({ | |
scrollTop: jQuery("#about-me").offset().top | |
}, 1000); | |
}); | |
jQuery('a[href^="#about-me-link"]').click(function() { | |
jQuery('html, body').animate({ | |
scrollTop: jQuery("#about-me").offset().top | |
}, 1000); |
OlderNewer