Template CodeBox - Beispiel für die Anwendung
UIDEV - Wo das Internet lebt
UrbanInternetDEVeloping - Template CodeBox
Template CodeBox ist ein Tab-Register mit sich öffnende Toggle Code Beispiel Inhalte. Hier werden zum Beispiel verschiedene Codes in Toggle-container dargestellt.
New bootstrap 5.3+ codes for use
function HomepageLaden($url, $postdata) { $agent = "Meine Browserkennung v1.0 :)"; $header[] = "Accept: text/vnd.wap.wml,*.*"; $ch = curl_init($url); if ($ch) { curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); if (isset($postdata)) { curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata); } $tmp = curl_exec ($ch); curl_close ($ch); } return $tmp; } $_url = "http://domain.tld/site.html"; $_buffer = HomepageLaden($_url, ""); $dom = new DOMDocument(); $dom->loadHTML($_buffer); // Adresse $divNode = $dom->getElementById('profil_name_adresse'); echo $divNode->childNodes;
#footer,#main,.beforefooter,.breadcrumb,.footer-address,.textbox,.yamm,a:not(.active),body,h1 span,h2 span,.btn:not(.active),placeholder,.accordion-item{color:#000!important}a:hover,.btn:hover,.nav-link:hover{color:#F5334D!important}body,.btn{text-shadow:#ececec 0 0 1px,#ccc 0 -1px 2px,#ccc 0 -1px 2px,rgba(0,0,0,.6) 0 5px 10px;transition:margin-left .3s cubic-bezier(0,1,0,1)}.navbar-nav>li>a:focus,.navbar-nav>li>a:hover{color:#F5334D!important;border-bottom:1px solid #ccc!important}.navbar-nav>li .dropdown-menu li a:hover{color:#F5334D!important;background:-moz-linear-gradient(left,#ccc 0,rgba(125,185,232,0) 100%)!important;background:-webkit-linear-gradient(left,#ccc 0,rgba(125,185,232,0) 100%)!important;background:linear-gradient(to right,#ccc 0,rgba(125,185,232,0) 100%)!important}.active{color:#F5334D!important}
Here will go newer code
coming soon