https://github.com/iftekheraziz/simple-interactive-bank
Simple-Interactive-Bank
https://github.com/iftekheraziz/simple-interactive-bank
bootstrap5 css3 dom-manipulation html5 javascript modern-javascript responsive-design
Last synced: 2 months ago
JSON representation
Simple-Interactive-Bank
- Host: GitHub
- URL: https://github.com/iftekheraziz/simple-interactive-bank
- Owner: IftekherAziz
- Created: 2023-02-11T18:25:36.000Z (over 3 years ago)
- Default Branch: Main
- Last Pushed: 2023-02-13T12:56:48.000Z (over 3 years ago)
- Last Synced: 2025-03-04T04:10:03.820Z (over 1 year ago)
- Topics: bootstrap5, css3, dom-manipulation, html5, javascript, modern-javascript, responsive-design
- Language: HTML
- Homepage:
- Size: 87.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
1.Which tag will you put the main heading content of a website?
- header
2.How do you make an inline element act like a block element?
- display:block;
3.which tailwind class will you use to align text in the middle of the web page?
- text-center
4.Display 1250 for document.getElementById(“balance”).___?___ = 1250;
- inputText
5.Which one of the below is the correct way to declare a password input field?
-
6.Which code will redirect you to the pHero.html page?
- window.location.href = "pHero.html";
7.Which tailwind class will you use for background color?
- bg-green-400
8.How to empty an input field?
- value ='';
9.____?___ converts a string to floating point numbers.
- parseFloat();
10.If “para1” is the DOM object for a paragraph, what is the correct syntax to change the text within the paragraph?
- para1.innertext = "New Text";