Mindblown: a blog about philosophy.

  • AI Promises A Bright Career

    With every company looking to introduce Artificial Intelligence in their domain, studying AI and Machine Learning opens up a world of opportunities to create cutting-edge technologies in diverse sectors, such as computer protection, image recognition, pharmacy, or face recognition. So, earn your degree from one of the top Artificial Intelligence and Machine Learning Engineering Colleges in Gunturand…

  • JavaScript Variable

    A JavaScript variable is simply a name of storage location. There are two types of variables in JavaScript : local variable and global variable. There are some rules while declaring a JavaScript variable (also known as identifiers). Name must start with a letter (a to z or A to Z), underscore( _ ), or dollar( $ )…

  • JavaScript Comment

    The JavaScript comments are meaningful way to deliver message. It is used to add information about the code, warnings or suggestions so that end user can easily interpret the code. The JavaScript comment is ignored by the JavaScript engine i.e. embedded in the browser. Advantages of JavaScript comments There are mainly two advantages of JavaScript comments. To…

  • External JavaScript file

    We can create external JavaScript file and embed it in many html page. It provides code re usability because single JavaScript file can be used in several html pages. An external JavaScript file must be saved by .js extension. It is recommended to embed all JavaScript files into a single file. It increases the speed of the…

  • JavaScript Example

    JavaScript Example Within body tag Within head tag Javascript example is easy to code. JavaScript provides 3 places to put the JavaScript code: within body tag, within head tag and external JavaScript file. Let’s create the first JavaScript example. <script type=”text/javascript”>   document.write(“JavaScript is a simple language for javatpoint learners”);   </script>   The script tag specifies that we are using JavaScript. The text/javascript is the content type that provides…

  • JavaScript Tutorial

    Our JavaScript Tutorial is designed for beginners and professionals both. JavaScript is used to create client-side dynamic pages. JavaScript is an object-based scripting language which is lightweight and cross-platform. JavaScript is not a compiled language, but it is a translated language. The JavaScript Translator (embedded in the browser) is responsible for translating the JavaScript code for the web browser.…

  • How to add CSS

    CSS is added to HTML pages to format the document according to information in the style sheet. There are three ways to insert CSS in HTML documents. Inline CSS Internal CSS External CSS 1) Inline CSS Inline CSS is used to apply CSS on a single line or element. For example: <p style=”color:blue”>Hello CSS</p>   2) Internal CSS…

  • CSS Selector

    CSS selectors are used to select the content you want to style. Selectors are the part of CSS rule set. CSS selectors select HTML elements according to its id, class, type, attribute etc. There are several different types of selectors in CSS. CSS Element Selector CSS Id Selector CSS Class Selector CSS Universal Selector CSS Group Selector…

  • CSS Syntax

    A CSS rule set contains a selector and a declaration block. Selector: Selector indicates the HTML element you want to style. It could be any tag like <h1>, <title> etc. Declaration Block: The declaration block can contain one or more declarations separated by a semicolon. For the above example, there are two declarations: color: yellow; font-size: 11…

  • What is CSS

    CSS stands for Cascading Style Sheets. It is a style sheet language which is used to describe the look and formatting of a document written in markup language. It provides an additional feature to HTML. It is generally used with HTML to change the style of web pages and user interfaces. It can also be…

Got any book recommendations?