A static website is the most basic type of website and contains web pages with fixed content. Each page is coded in HTML and displays the same information to every user. Examples of static web page include about us page with a corporate website, mission, vision etc.
A dynamic website is more functional. It allows users to interact with the information that is listed on the page. Of course, that requires utilizing more than just HTML code.
You can use JavaScript submit() function to submit the form without explicitly clicking any submit button.
There are many factors effect website loading spped. Here some of methods or ways to reduce website's loading time :
Cross-Origin Resource Sharing (CORS) is a mechanism that enables different resources on a web page to be requested from another domain outside the domain from which the request originated.
Here is list of some API provided by HTML5 :
Undefined means a variable has been declared but has not yet been assigned a value. On the other hand, null is an assignment value.
There are three main types of pop-up boxes:
The scope defines the accessibility of the functions and variables in an application. There are two types of scopes: local and global.
HTML and XHTML are both known for writing web pages. But, HTML is extended from SGML tagging whereas XHTML is an application of Extensible Markup Language (XML).
HTML has three components – element tag pair (start tag and end tag), attributes of the element within the tag, and content in the form of both text and graphics. Whereas XHTML includes only a single root element which includes lower case elements and the value that is assigned should be closed, nested, and must be surrounded by quotation marks. Looking at the difference, XHTML is more expressive when compared to HTML.
NPM stands for Node Package Manager. It is a package manager for JavaScript. npm puts modules in place so that node can find them. npm also manages dependency conflicts. It is used to publish, discover, install, and develop node programs.
Webpack is an open-source JavaScript module bundler. It is made primarily for JavaScript, but it can transform front-end assets such as HTML, CSS, and images if the corresponding loaders are included. Webpack takes modules with dependencies and generates static assets representing those modules.
The Document Object Model is a cross-platform and language-independent interface that treats an XML or HTML document as a tree structure wherein each node is an object representing a part of the document. The DOM represents a document with a logical tree.
responsive is fluid and adapts to the size of the screen no matter what the target device. Responsive uses CSS media queries to change styles based on the target device such as display type, width, height, etc., and only one of these is necessary for the site to adapt to different screens.
Adaptive design, on the other hand, uses static layouts based on breakpoints that don’t respond once they’re initially loaded.
Functional requirements define the specific functionality of the system, It describes what the system does or must not do.
Non-functional requirements, on the other hand, define how the system should do it. It specifies a system’s type, in terms of accessibility, reliability, capacity, usability, maintainability, and security. Non-functional requirements describe system behavior, features, and general characteristics that affect the user experience.
CSS selectors are used to select the HTML elements you want to style. Here is main types of CSS selectors :
Long polling is a web application development pattern used to emulate pushing data from the server to the client. When the long polling is used, the client sends a request to the server, and the connection remains intact until the server is ready to send data to the client. The connection will be closed only after the data is sent back to the client or connection timeout occurs.
he correct way to include JavaScript into your HTML is by using inline event handlers or inline code.
For Multiple line input we can use textarea tag.
Here is list of some differance between XHTML and HTML :
JavaScript supports automatic type conversion. Since it is weakly typed, you can pass a function as an argument into another function easily.
This ensures that there are no errors or data type-associated warnings as values get converted to the required data type automatically.
The
If the jQuery Event Handler returns a boolean false value, it simply means that the event will not execute further and will halt the execution for the particular action it is associated with.
Pair programming is an agile software development technique in which two programmers work together at one workstation. One, the driver, writes code while the other, the observer or navigator, reviews each line of code as it is typed in. The two programmers switch roles frequently.