One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| Mask | Slash | Subnets and Range | Available hosts |
|---|---|---|---|
| .128 | /25 | 2sn à 128 | 126h |
| .129 | /26 | 4sn à 64 | 62h |
| .224 | /27 | 8sn à 32 | 30h |
| .240 | /28 | 16sn à 16 | 14h |
| .248 | /29 | 32sn à 8 | 6h |
| .252 | /30 | 64sn à 4 | 2h |
| .254 | /31 | 128sn à 2 |
| <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> |
| sass/ | |
| | | |
| |– base/ | |
| | |– _reset.scss # Reset/normalize | |
| | |– _typography.scss # Typography rules | |
| | ... # Etc… | |
| | | |
| |– components/ | |
| | |– _buttons.scss # Buttons | |
| | |– _carousel.scss # Carousel |
| <?php | |
| class Database { | |
| private $db; | |
| private $statement; | |
| // private $error; | |
| private $optionsPDO = [ | |
| PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.html$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.html [L] | |
| </IfModule> |
| (function($) { | |
| const | |
| resizeThrottle = 200, | |
| win = $(window), | |
| html = $('html'), | |
| body = $('body'), | |
| btnMenu = $('#btn-main-menu'), | |
| menu = $('#menu'); |
| /* Modern Font Stacks */ | |
| /* System */ | |
| font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; | |
| /* Times New Roman-based serif */ | |
| font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif; | |
| /* A modern Georgia-based serif */ | |
| font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif; |
| ;;; php error handling for development servers | |
| display_startup_errors = true | |
| display_errors = true | |
| html_errors = true | |
| log_errors = true | |
| ignore_repeated_errors = false | |
| ignore_repeated_source = false | |
| report_memleaks = true | |
| track_errors = true | |
| docref_root = 0 |