Plantilla Modicada Por Xavier Suarez
@import url(‘https://fonts.googleapis.com/css2?family=Cairo&display=swap’);
body
{
font-family: ‘Cairo’, sans-serif;
}
Plantilla Modicada Por Xavier Suarez
*{margin:0;padding:0;box-sizing:border-box;font-family:’Raleway’;}
body{background:#;}
div .xstv{overflow-x:scroll;overflow-y:hidden;white-space:nowrap;margin:1px;border-radius:7px;}
#header{position:fixed;width:100%;top:-5px;}
footer{background:#000;display:flex;width:100%;bottom:0;justify-content:space-around;align-items:center;padding:6px 2px;position:fixed;left:0;right:0px;color:#fff;}
footer div{font-size:10px;text-align:center;justify-content:center;align-items:center;}
footer i{padding-left:0px;}
/*footer end*/
footer img{height:20px;width:20px;margin-bottom:3px;}
footer svg{height:20px;width:20px;margin-bottom:3px;}
footer span{transform:scale(1);}
#s-f{margin-bottom:40px;}
.slider{width:100%;margin:auto;overflow:hidden;}
.slider ul{display:flex;padding:0;width:400%;
animation:cambio 10s infinite alternate linear;}
.slider li{width:100%;list-style:none;}
.slider img{width:100%;}
@keyframes cambio{0% {margin-left: 0;}20% {margin-left: 0;}25% {margin-left: -100%;}45% {margin-left: -100%;}50% {margin-left: -200%;}70% {margin-left: -200%;}75% {margin-left: -300%;}100% {margin-left: -300%;}}
//tabs
function xavi(tabc) {var i;
var xavi = document.getElementsByClassName(“xaviec”);
for (i = 0; i < xavi.length; i++) {xavi[i].style.display = “none”;}
document.getElementById(tabc).style.display = “block”;}
Shahid
! function() {
var audienceReadyCallback = function (profile) {
// Get audiences as an array
var lotameAudiences = profile.getAudiences() || [];
};
var lotameClientId = 16017; // client ID
var audLocalStorageKey = ‘lotame_’ + lotameClientId + ‘_auds’;
var lotameTagInput = {
data: { },
config: {
clientId: Number(lotameClientId),
audienceLocalStorage: audLocalStorageKey,
onProfileReady: audienceReadyCallback
}
};
// Lotame initialization
var lotameConfig = lotameTagInput.config || { };
var namespace = window[‘lotame_’ + lotameConfig.clientId] = { };
namespace.config = lotameConfig;
namespace.data = lotameTagInput.data || { };
namespace.cmd = namespace.cmd || [];
} ();
<header
HTML Result Skip Results Iframe<!DOCTYPE html><html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Copy Text From Input Field</title> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" /> <!-- Stylesheet --> <style media="screen"> * {padding: 0;margin: 0;box-sizing: border-box;font-family: "Poppins", sans-serif;}body {background: rgb(6, 118, 185);text-align: center;align-items: center;justify-content: center;}.container {width: 350px;background: white;margin: 100px auto;padding: 15px;border-radius: 4px;}.container textarea {width: 100%;min-height: 150px;border: 2px solid rgb(11, 127, 205);padding: 4px;font-size: 16px;}.container button {padding: 11px 22px;background: rgb(17, 106, 198);color: white;border: none;border-radius: 3px;font-size: 17px;margin-top: 8px;} </style> </head> <body> <div class="container"> <textarea type="text" id="text">hi</textarea> <button onclick="copy('text')">Copy Text</button> </div> <!-- Script --> <script type="text/javascript"> //Pass the id of the <input> element to be copied as a parameter to the copy() let copy = (textId) => { //Selects the text in the <input> elemet document.getElementById(textId).select(); //Copies the selected text to clipboard document.execCommand("copy"); }; </script> </body></html>Resources