A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>University of Dewantara</title> | |
</head> | |
<body> | |
<nav> | |
</nav> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>University of Dewantara</title> | |
</head> | |
<body> | |
<nav> | |
<div class="inside"> | |
<ul> |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
<?php | |
//Add Activate Button | |
function my_plugin_activate(){ | |
//db create, create options, etc | |
error_log('My plugin activated'); | |
} | |
register_activation_hook(__FILE__, 'my_plugin_activate'); | |
//Add Deactivate Button | |
function my_plugin_deactivate(){ |
├─┬ [email protected] | |
│ ├── [email protected] | |
│ ├── [email protected] | |
│ ├── [email protected] | |
│ └─┬ [email protected] | |
│ ├── [email protected] | |
│ ├── [email protected] | |
│ └─┬ [email protected] | |
│ └── [email protected] | |
├─┬ [email protected] |
<?php | |
/** | |
* The WordPress Query class. | |
* @link http://codex.wordpress.org/Function_Reference/WP_Query | |
*/ | |
$args = array( | |
/** Post & Page Parameters */ | |
'p' => 1, | |
'name' => 'hello-world', | |
'page_id' => 1, |
<body> | |
<form action="test.php" method="post"> | |
<div class="row"> | |
<div class="large-12-columns"> | |
<fieldset> | |
<legend>Date of Presentation</legend> | |
<label for="">Presentation Date</label> | |
<input type="text" name="jquerydatepicker" class="selector" value="<?php if (isset($_POST['jquerydatepicker'])) { | |
echo $_POST['jquerydatepicker']; | |
} |