Files
unisa_tsw_2014_2015/php10.php

77 lines
868 B
PHP

<?php
require_once ('functions.php');
include('header.html');
///////////////////////////
echo<<<_css
<style>
input:valid {
background-color:green;
}
input:invalid {
background-color:red;
}
input:in-range {
font-size:20pt;
}
input:required {
color:red;
}
input:optional {
color:blue;
}
input:active {
outline: 5px black solid;
}
input:focus {
outline: 5px yellow solid;
}
#a[placeholder="mario"][required]{
outline: 5px red solid;
}
</style>
_css;
echo "\n";
///////////////////////////
echo<<<_html
<a href="php9.php"><img src="sky.jpg" usemap="#mario" alt="image" /></a>
<map name="mario">
<area href="a.html" shape="rect" coords="0,0,100,100" alt="1 area"/>
<area href="b.html" shape="rect" coords="100,0,200,100" alt="2 area"/>
<area href="def.html" shape="default" alt="other"/>
</map>
_html;
include ('footer.html');
?>