CONTACTUS
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Let’s connect constellations
Let's align our constellations! Reach out and let the magic of collaboration illuminate our skies.

GET IN TOUCH DIRECTLY
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Send me an email
contact@throwbakc.com
Give me a call
(401) 314 8653
Business Hours
Mon - Fri (9:00 - 6:00)
FREQUENTLY ASKEDQUESTIONS
Semantic HTML refers to a method of coding where HTML markup is used to emphasise the meaning or semantics of the existing content.
The Box Sizing property in CSS defines how developers should calculate the width and height of a box.
Content Box is when the default height and width get applied to the content of an element. The border and padding lie outside the box.
Padding Box is when the developer adds the dimensions to include the padding and content of the element. This adds a border outside the given box.
Border Box is when the box dimensions apply to the border, padding and content.
There are three ways to hide elements with CSS.
display:none can hide the content so that it doesn’t get stored in the DOM.
visibility:hidden adds an element to the DOM and occupies space. However, the user cannot see it.
position:absolute makes the element appear outside the screen, not on the screen.
Callback is a JavaScript function that developers send as a parameter or argument to other functions. You can call this function whenever the function it is provided to gets called.
Undefined refers to a situation where a variable is declared but no value has been assigned to the variable yet.
ex. let a; console.log(a); // Output: undefined
Null refers to the assignment of value to a variable that isn’t meant to contain any value.
ex. let b = null; console.log(b); // Output: null
Undeclared refers to variables that don’t exist in an application or program or haven’t been declared.
ex. console.log(c); // ReferenceError: c is not defined
ex. let a; console.log(a); // Output: undefined
Null refers to the assignment of value to a variable that isn’t meant to contain any value.
ex. let b = null; console.log(b); // Output: null
Undeclared refers to variables that don’t exist in an application or program or haven’t been declared.
ex. console.log(c); // ReferenceError: c is not defined
- Image compress - This is a method that helps to reduce the size of an asset to reduce the data transfer
- Minify scripts - This reduces the overall file size of js and CSS files
- File concatenation - This reduces the number of HTTP calls
- CDN hosting - A CDN or content delivery network is geographically distributed servers to help reduce latency.
- Lazy Loading - Instead of loading all the assets at once, the non-critical assets can be loaded on a need basis.
- Parallel downloads - Hosting assets in multiple subdomains can help to bypass the download limit of 6 assets per domain of all modern browsers. This can be configured but most general users never modify these settings.
Follow these Steps: Access PC localhost (XAMPP Server) from mobile
- Connect PC and mobile Both Devices to the Same Network (wifi)
- Open XAMPP
- Apache start config
- MySQL start config
- Find Your Computer’s Local IP Address
- Run (Press Windows + R)
- Open CMD: Type cmd and hit Enter
- Type ipconfig
- copy IPV4 adress http://192.168.---:3000 and your local server is running on port 3000
- Open Your Local Website on Mobile Device
- open mobile browser (chrome)
- type ip address http://192.168.---:3000
- Test and Enjoy!