Perfect Number : Sum of factors (except itself) is equals to same number
Factorial Calculation :Input : Enter n value : 5Output : Factorial of 5 is : 120 (5x4x3x2x1 = 120)
HTML Forms and Elements: HTML forms are used to collect user input. HTML forms are useful in web development. Forms enable website users to submit data via the web pages. HTML forms contain form elements. …
HTML Lists – The Style Attribute: Style object providing list of attributes to apply styles to lists. The following table shows how to represent unordered lists with style object. Style Description list-style-type : disc …
HTML Definition Lists: We can define dictionary using HTML definition lists. We simply called it as description lists also The <dl> tag defines a description list. The <dl> tag is used in conjunction with <dt> …
HTML Ordered Lists We can specify the numbers to elements in the list. This list is created by using <ol> tag. The numbering starts at one and is incremented by one for each successive ordered …
Unordered Lists: An unordered list is a collection of elements Each element marked with a bullet(a default symbol) This list is created by using HTML <ul> tag. The type Attribute: You can use type attribute …
HTML Lists: HTML lists are used to work with list type of elements. Lists can be represented as unordered lists, ordered lists and definition lists. <ul> – An unordered list. This will list items using …