Search results

  1. Yepkoo

    How can I import passwords as files with Mozilla Firefox?

    Of course, there is a very easy way to do this. In Firefox, we can export passwords in csv format by saying manage passwords. However, there is no option to restore the files we exported in its presets. We can activate it with a small adjustment. All we have to do is open Firefox and type...
  2. Yepkoo

    Resetting form boxes when refreshing the browser

    Sometimes you want the form boxes to be reset when you refresh the browser. It will be reset when you use the code below. autocomplete="off" <!--Example--> <input type="text" autocomplete="off">
  3. Yepkoo

    <input type="url">

    When you enter data in the html input box, it checks whether it is a URL address. By the way, when you say mandatory, if you want to make it mandatory to enter data in the box, you need to add the required code to your input code. If you wish, you can define the pattern and make the URL header...
  4. Yepkoo

    <input type="time">

    Provides time input in the html input box. For example, our input box where we allow time entry between a minimum of 05:00 and a maximum of 21:15. <input type="time" min="05:00" max="21:15">
  5. Yepkoo

    <input type="tel">

    It allows you to enter the phone number with the pattern you will create in the html input box. <input type="tel" value="" pattern="[0-9]{3} [0-9]{3} [0-9]{4}"> <!-- [0-9]{3} = 3-digit numbers between 0-9 must be entered [0-9]{4} = 4-digit numbers between 0-9 must be entered In addition...
  6. Yepkoo

    <input type="password">

    It defines the data entered in the html input box as a password entry and hides it as ***. <input type="password" value="0" placeholder="Your password">
  7. Yepkoo

    <input type="number">

    Makes it mandatory to enter numbers in the html input box. <input type="number" value="0" placeholder="Number">
  8. Yepkoo

    <input type="email">

    Requires the e-mail address to be entered in the html input box. <input type="email" value="" placeholder="E-Mail">
  9. Yepkoo

    <input type="button">

    This defines your input code as a button <input type="button" class="mycustomstyle" value="Submit Button"> You can also customize the button with color etc. css codes. .mycustomstyle{ border:0; padding:7px 20px; font-size:1rem; text-align:center; background: #CC4747...
  10. Yepkoo

    Div scrooll

    .div{overflow-x:hidden;overflow-y:auto;}
  11. Yepkoo

    CSS Margin - Padding

    /* We gave a red background color We gave 30px upper spacing We gave 20px lower spacing We gave 15px inner space in all 4 corners */ .div1{background-color:red;margin-top:30px;margin-bottom:20px;padding:15px;} /* We have given 15px inner space to the Top, Bottom, Left and Right corners...
  12. Yepkoo

    CSS Flex Example

    .flex-container { display: flex; flex-wrap: nowrap; background-color: blue; } .flex-container > div { background-color: #f9f9f9; width: 200px; margin: 10px; padding: 15px; text-align: center; font-size: 20px; } <div class="flex-container"> <div> Item 1 </div>...
  13. Yepkoo

    Automatic font reduction based on browser size (Responsive) with CSS

    You can adjust the initial display size of the text by changing the vw number. .mytitle{font-size: calc(3vw + 12.4px);line-height: 1.2;}
  14. Yepkoo

    CSS text-decoration

    div1 { text-decoration: overline; } div2 { text-decoration: line-through; } div3 { text-decoration: underline; } div4 { text-decoration: underline overline; } HTML Output;
  15. Yepkoo

    Capitalize with CSS - text-transform

    div1 { text-transform: uppercase; } /* Html output = EXAMPLE TEXT */ div2 { text-transform: lowercase; } /* Html output = example text */ div3 { text-transform: capitalize; } /* Html output = Example Text */
  16. Yepkoo

    CSS Responsive codes

    // For example, top spacing on Normal page size .div_class{margin-top:30px;} // Applies the new margin value if the browser size is 769px or less @media screen and (max-width:769px){ .div_class{margin-top:20px;} } // Applies the new margin value if the browser size is 562px or less @media...
  17. Yepkoo

    Overlay code with CSS

    You can use the following CSS code to block any action on the site for the click of a button or for any other purpose. .overlay { /*display:none*/ position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0,0,0,0.5); z-index: 2...
  18. Yepkoo

    Select Change (javascript function)

    With a select element, it allows you to manipulate your data with javascript, using option data. For example, I have 2 images and we want our image to change when we change the option. <!-- Html Code --> <!-- We gave image-change class value to our html select element--> <select...
  19. Yepkoo

    Disabling more than one form button at the time of submission

    You can disable one or more form buttons when you press the submit button as follows. Define the id name of each button you add to the onclick section of all buttons. Example: disableButton('formbtn1'); Example to disable the multiform button; <button id="formbtn1" type="submit" class="ui blue...
  20. Yepkoo

    Changing data with Javascript Option options

    You can change the data in the div you specify with Javascript Select. For example, you have a shopping page and you can use it if you want the price to change according to the options. <script> $(".submenu_select").on('change', function() { var form_data =...
Top