Jump to content

Sherin

Members
  • Posts

    76
  • Joined

  • Last visited

Everything posted by Sherin

  1. if you know about more information about ETL stored procedure like the basic to top how to start and how to use you should be follow the below link i hope u get more details from this link https://www.labkey.org/Documentation/wiki-page.view?name=etlStoredProcMSSQL
  2. If you want to separate two pictures in same row the Margin Property allow you to give space between two picture . Here is the code <html> <head> <title>IMAGE</title> </head> <body> <img src="/image/Screenshot_2.png" alt="old car" style="margin: 10px;width: auto;height:300;" > <img src="/image/Screenshot_1.png" alt="car1" style="margin: 10px;width: auto;height:300;" > </body> </html> I hope this will helps you.
  3. Follow the specificity rules https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
  4. If you have tried SELECT STR(39.776, 15, 2); So your result is 39.78
  5. You can pass single quote ' ' in REQUEST_METHOD.
  6. You can set login session if the the user has been logged in your site till the user use the your website otherwise login the site
  7. You can three ways to create CSS 1)Internal 2)Inline 3)External For further know about the create CSS you can follow this link https://www.w3schools.com/css/css_howto.asp
  8. You can use text-overflow: ellipsis; and white-space : pre or nowrap; use in css property.
  9. You can also write external css of your <h1> tag. HTML: <h1> CSS h1 { font-famliy:verdana; color:white; text-align:center; }
  10. Sherin

    Audio tag

    I think your src path is not found in current folder if your audio file in another folder so you should this path write in the <src> tag.
  11. You can following the below link for sql injection returned data https://portswigger.net/web-security/sql-injection
  12. You can use the below link for build a rock paper scissors game in javascript https://medium.com/javascript-in-plain-english/building-a-rock-paper-scissors-game-with-javascript-bce23d39509d
  13. Sherin

    Will not ADD

    You have missing the quote mark in when you define password
  14. The Below url will help for you link api in javascript https://www.programmableweb.com/news/how-to-connect-to-api-javascript/how-to/2018/06/17#:~:text=To open a connection to,the URL of the endpoint.
  15. var response = "[{ "Name":"Xyz", "Age":"16", "ID":"5" }, { "Name":"ABC", "Age":"15", "ID":"6" }]"; // convert string to JSON response = $.parseJSON(response); $(function() { $.each(response, function(i, item) { var $tr = $('<tr>').append( $('<td>').text(item.Name), $('<td>').text(item.Age), $('<td>').text(item.ID) ); //.appendTo('#records_table'); console.log($tr.wrap('<p>').html()); }); });
  16. <style> .header img { float: left; width: 100px; height: 100px; } .header h1 { position: relative; top: 18px; left: 10px; } </style> <div class="header> <img src="Your logo path" width="Your logo width" height="Your logo height" alt="Logo name"> <h1>Header</h1> </div> I hope this code is help for you
  17. If you build a website on php so the some folder will you protect or subdirectory so this link is help for you https://css-tricks.com/easily-password-protect-a-website-or-subdirectory/
  18. You can give id or class name of span tag and styling their class name or id
  19. You can use @media print and @page for shrink web page pictures when printed For further details you can follow this link https://www.jegsworks.com/lessons/web-2/html/step-mediaprint.htm
  20. [Link Removed] You can follow above link for highlight specific dates in date picker
  21. <link rel="stylesheet" href=" ./css/style.css"> the dot is identified your main project folder.
  22. Sherin

    Count with sub querry

    SELECT SUM(CASE WHEN column1 IS NOT NULL THEN 1 ELSE 0 END) AS column1_count ,SUM(CASE WHEN column2 IS NOT NULL THEN 1 ELSE 0 END) AS column2_count ,SUM(CASE WHEN column3 IS NOT NULL THEN 1 ELSE 0 END) AS column3_count FROM table
  23. You can use linear-gradient property in css . It is used for gradient border background : linear-gradient(to right , blue, red); for further details you can follow this link. Gradient Borders
  24. Sherin

    SaaS

    You are beginner in Saas You can follow this link. https://www.w3schools.com/sass// [Link Removed]
  25. Sherin

    Font-family

    I have not idea of add your custom fonts in wordpress. You can add your custom font with below link https://www.hostinger.in/tutorials/how-to-add-custom-fonts-to-wordpress I think this link is help for you
×
×
  • Create New...