Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <DOCTYPE html5>
<html>
  <head>
    <link href="https://chr15m.github.io/DoodleCSS/doodle.css" rel="stylesheet">
    <style>
    @import url('https://fonts.googleapis.com/css2?family=Short+Stack&display=swap');
    body {
      font-family: 'Short Stack', cursive;
    }
    </style>
  </head>
  <body class="doodle">
    <h1>Encuesta para los más pequeños:</h1>
<form>
      <p>
        <label for="example-input-text">Campo de texto: </label>
        <input id="example-input-text" type="text" placeholder="Ingrese un texto aqui">
      </p>
      <p>
        <label for="example-input-email">Correo Electrónico: </label>
        <input id="example-input-email" type="email" placeholder="ejemplo@gmail.com">
      </p>
      <p>
        <label for="example-input-password1">Número: </label>
        <input id="example-input-number" type="number" placeholder="23232">
      </p>
      <p>
        <label for="example-input-password">Contraseña: </label>
        <input id="example-input-password" type="password" placeholder="123456">
      </p>
      <p>
        <label for="example-input-search">Caja de búsqueda: </label>
        <input id="example-input-serach" type="search" placeholder="Buscar ..">
      </p>
      <p>
        <label for="example-input-tel">Telephone number</label>
        <input id="example-input-tel" type="tel" placeholder="9819922">
      </p>
      <p>
        <label for="example-input-url">Enlace</label>
        <input id="example-input-url" type="url" placeholder="https://google.com">
      </p>
      <p>
        <label for="example-input-color">Caja de Color: </label>
        <input id="example-input-color" type="color" placeholder="#fff">
      </p>
      <p>
        <label for="example-input-date">Fecha: </label>
        <input id="example-input-date" type="date" placeholder="2021/12/24">
      </p>
      <p>
        <label for="example-input-date-time">Fecha / Hora: </label>
        <input id="example-input-date-time" type="datetime" placeholder="2021/12/24 12:00">
      </p>
      <p>
        <label for="example-input-date-time-local">Fecha / Hora local</label>
        <input id="example-input-date-time-local" type="datetime-local" placeholder="2021/12/24 12:00">
      </p>
      <p>
        <label for="example-input-month">Mes: </label>
        <input id="example-input-month" type="month" placeholder="Mes">
      </p>
      <p>
        <label for="example-input-week">Semana: </label>
        <input id="example-input-week" type="week" placeholder="Semana">
      </p>
      <p>
        <label for="example-input-time">Hora: </label>
        <input id="example-input-time" type="time" placeholder="Hora">
      </p>
      <p>
        <label for="example-select1">Caja para seleccionar: </label>
        <select id="example-select1">
          <option>1</option>
          <option>2</option>
          <option>3</option>
          <option>4</option>
          <option>5</option>
        </select>
      </p>
      <p>
        <label for="example-select2">Caja para selección múltiple: </label>
        <select id="example-select2" multiple="">
          <option>1</option>
          <option>2</option>
          <option>3</option>
          <option>4</option>
          <option>5</option>
        </select>
      </p>
      <p>
        <label for="example-textarea">Escriba una descripción: </label>
        <textarea id="example-textarea" rows="3"></textarea>
      </p>
      <p>
        <label for="example-input-file">Seleccione un archivo: </label>
        <input id="example-input-file" type="file">
      </p>
      <fieldset>
        <legend>Formulario de encuesta: </legend>
        <div>
          <label>
            <input id="optionsR-radios1" type="radio" name="options-radios" value="option1" checked="">
            La primera opción es para marcar si le gusta el producto.
          </label>
        </div>
        <div>
          <label>
            <input id="options-radios2" type="radio" name="options-radios" value="option2">
            La segunda opción indica si quiere comprar el producto.
          </label>
        </div>
        <div>
          <label>
            <input id="options-radios3" type="radio" name="optionsRadios" value="option3" disabled="">
            La opción 3 esta desabilitada.
          </label>
        </div>
      </fieldset>
      <fieldset>
        <legend>Cuáles son tus hobbies?</legend>
        <p>
          <input type="checkbox" name="check1" id="check1">
          <label for="check1">Correr</label>
        </p>
        <p>
          <input type="checkbox" name="check2" id="check2">
          <label for="check2">Saltar</label>
        </p>
        <p>
          <input type="checkbox" name="check3" id="check3" disabled="">
          <label for="check3">Tocar a la guitarra</label>
        </p>
        <p>
          <input type="checkbox" name="check3" id="check3" checked="" disabled="">
          <label for="check3">Programar</label>
        </p>
      </fieldset>
      <p>
        <button type="button" name="button">Guardar</button>
        <input type="button" name="input" value="Enviar">
        <input type="submit" name="submit" value="Boton de envio de datos">
        <input type="reset" name="reset" value="Reiniciar formulario">
      </p>
    </form>    
  </body>
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console