Tag: Javascript
-
[Python] Flask-Boostrap – Python based web development frameworks
Introduction Flask-Bootstrap is a Flask extension that makes it easy to use Bootstrap with Flask. It provides a simple way to include Bootstrap in your Flask application by adding a few lines of code. Flask-Bootstrap provides a set of base templates and utilities that make it easy to include Bootstrap’s CSS and JavaScript in your…
-
Front-End Web Frameworks : (4) PrimeNG
introduction PrimeNG is a front-end framework that is built using Angular.js. It is an open-source framework that provides a wide range of pre-designed UI components such as buttons, forms, navigation menus, and more. The framework also includes a responsive grid system and a set of CSS classes that can be used to quickly create responsive…
-
Front-End Web Frameworks : (3) Vuetify
Introduction Vuetify is a Material Design framework for Vue.js. It is an open-source framework that provides a wide range of pre-designed UI components such as buttons, forms, navigation menus, and more. The framework also includes a responsive grid system and a set of CSS classes that can be used to quickly create responsive layouts. Vuetify…
-
Front-end Web Developments : (3) Material
Introduction Material frameworks are front-end frameworks that are based on the Material Design guidelines developed by Google. These frameworks provide a set of pre-designed UI components and a responsive grid system that are designed to look and feel like the Material Design guidelines. One of the most popular Material frameworks is Materialize. It is an…
-
Front-end Web Frameworks : (1) bootstrap.js
Introduction Bootstrap.js is a popular JavaScript framework for building responsive, mobile-first websites and web applications. It is an open-source framework developed by Twitter and is widely used by web developers around the world. Bootstrap.js is built on top of the popular jQuery library and provides a wide range of features and tools for building responsive,…
-
Meteor Stack
Introduction Meteor is a full-stack JavaScript platform for developing web and mobile applications. It allows developers to use the same codebase for both the client and the server, making development faster and more efficient. Meteor includes a real-time data synchronization feature, allowing data to automatically update in real-time across clients. It also includes a package…
-
MEAN Stack
Introduction to MEAN Stack MEAN is a stack of technologies that stands for MongoDB, Express.js, AngularJS, and Node.js. It is used to develop web applications using JavaScript on both the client and server sides. MongoDB is a NoSQL database, Express.js is a web framework for Node.js, AngularJS is a JavaScript framework for building web applications,…
-
Websites Development from HTML, CSS and Javascript : (4) Using Linear Algebra Library
There are several linear algebra libraries available for JavaScript. Here are a few popular ones: You can find more information about these libraries, including documentation and examples, on their respective websites. Here is an example of how you can perform some simple linear algebra operations using the linear-algebra library: This code creates a 2×2 matrix…
-
Websites Development from HTML, CSS and Javascript : (3) Make Triangle at Website using WebGL
Here is an example of an HTML page with two tile-style buttons and a 3D view using WebGL: The first button has an onclick attribute that calls the displayDate function, which displays the current date in an alert box. The second button has an onclick attribute that calls the drawTriangle function, which gets the canvas…
-
Websites Development from HTML, CSS and Javascript : (2) Dividing Html File to HTML, CSS and Javascript and Service the Website using Flask
You can divide your HTML, CSS, and JavaScript code into separate files and link to them from an HTML file. This can make your code easier to organize and maintain. To link to a CSS file from an HTML file, you can use a link element in the head section of the HTML file, like…