Found 10711 Articles for Web Development

How to design a modern Website?

Ali
Ali
Updated on 15-Jun-2020 08:43:09

116 Views

Modern websites are responsive and the design works fine on multiple devices such as Desktop, Tablet, and Mobile. Also, websites these days do not follow the old font styles, many of them use Google fonts since it’s easy to find a font-face matching your website's content and Google provides a lot of free fonts to choose from.Modern websites display beautifully formatted content on multiple devices such phones, tablets, and desktops. Also, nowadays Retina-ready logo helps in keeping your logo amazing, no matter the resolution.Follow the below given steps and learn how to design a modern website −Design StylesFor design style, ... Read More

How to create a website without using HTML?

Fendadis John
Updated on 25-Sep-2019 07:52:30

3K+ Views

If you are having no knowledge of HTML or CSS, and want to create a website, then do not worry, you can easily create a website without writing even a single line of HTML code.Here are some ways to build a website without writing any HTML or line of code:Website BuildersWhen you will buy a website hosting plan, then the hosting company will provide you with free website builder option to easily create a website without even writing a single piece of HTML CodeContent Management SystemsUse Content Management System such as WordPress, Drupal or Joomla to develop a website, without ... Read More

How to create Favicon for your website?

Rahul Sharma
Updated on 10-Jan-2020 06:38:41

233 Views

A favicon is a little icon visible on the web browser tab, just before the page title. It is generally a logo with a smaller size. Here, you can see the favicon, The size of a favicon is 16x16 since it also gets displayed next to the URL of your site in a browser's address bar. It is visible on a users list of bookmarks and easily helps in recognizing the website from a list of websites.To add a favicon icon, you need to create an icon, with size 16x16. Also, some websites provide options to create favicon icon from ... Read More

How to block a website in your web browsers (Chrome and Internet Explorer)

Johar Ali
Updated on 15-Jun-2020 08:39:06

218 Views

To block a website on any of the web browsers like Google Chrome, Firefox, and Internet Explorer in a Windows system is quite easy. Follow the below-given steps to block a website −Open Notepad as an administrator i.e. Run as Administrator.Now, after opening Notepad, click on File, then click Open and move to the following path −C:\Windows\System32\drivers\etcThe following files will be visible. Click hosts and open it in Notepad −The notepad file will consist of some text. Reach the last line and press enter. Here, add the following to block any website and click Save to save the Notepad. We’re ... Read More

How to create a modal popup using JavaScript and CSS?

Nishtha Thakur
Updated on 16-Jun-2020 13:05:24

467 Views

Creating a modal popup means adding a dialog box, which generates on click of a button and close when user clicks anywhere outside of the popup.Here’s how a popup looks like below with header and a text. You can also add a footer to it −To create a modal popup using CSS and JavaScript, try to run the following code −ExampleLive Demo                    .popup {             display: none;             position: fixed;             z-index: 1;   ... Read More

How to create an ordered list with list items numbered with lowercase roman numbers in HTML?

Lokesh Badavath
Updated on 18-Oct-2022 11:27:00

7K+ Views

A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is marked with the numbers by default. You can create an ordered list using the tag and, define the list items using . We can create 4 types of ordered lists IN HTML − type="1"− This creates a numbered list starting from 1. type="A"− This creates a list numbered with uppercase letters starting from A. type="a"− This creates a list numbered with lowercase letters starting from a. type="I"− This ... Read More

How to compare two numbers in JavaScript?

Shubham Vora
Updated on 08-Aug-2022 09:02:40

16K+ Views

In this tutorial, we will learn to compare two numbers in JavaScript. If you are a competitive coder or application developer, in these cases, you need to make a comparison between two numbers and need to perform the particular operation basis on the comparison result of the numbers. Still, many programmers think we can compare the number only using the equality operator. Still, we can also compare the numbers using the less than or greater than operators. We will see the use of all three operators to compare the number in this tutorial. Using the Strict Equality Operator (===) In ... Read More

How to convert a String containing Scientific Notation to correct JavaScript number format?

Jennifer Nicholas
Updated on 17-Jun-2020 06:44:36

1K+ Views

To convert a string with Scientific Notation, use the Number function. Pass the value to this function.ExampleYou can try to run the following code to convert a string to correct number format −Live Demo                    document.write("String with Scientific Notation converted below:");          document.write(Number("7.53245683E7"));           OutputString with Scientific Notation converted below: 75324568.3

How to create an ordered list with list items numbered with uppercase roman numbers in HTML?

Lokesh Badavath
Updated on 24-Nov-2023 00:53:03

1K+ Views

An ordered list is a numbered list of items. It gives you the ability to control the sequence number in the context. Allow us to group a set of related items in lists. HTML support ordered list, unordered list and we have to use the tag, to create ordered list in HTML. The tag defines the ordered list. We use tag to start list of items. The list of items can be marked as numbers, lowercase letters uppercase letters, roman letters, etc. The default order is numbers for list items in the context. The tag ... Read More

How to get the length of a Number in JavaScript?

Vrundesha Joshi
Updated on 17-Jun-2020 06:34:53

16K+ Views

Use the toString() method to covert the Number to string, then the length() method gives you length.ExampleYou can try to run the following code to learn how to get the length of a Number −Live Demo                    var num1 = 344;          var num2 = 149856;          document.write("Length of number "+num1+" = "+ num1.toString().length);          document.write("Length of number "+num2+" = "+ num2.toString().length);           OutputLength of number 344 = 3 Length of number 149856 = 6

Advertisements