23/02/2023
Please be our guest.BCS
Joy Online School is an open source, social education or knowledge sharing platform.
23/02/2023
Please be our guest.BCS
04/10/2022
Colors set by using RGB values:
div {height:50px;width:100%;}
Colors can be set using RGB values
Heading
Heading
Heading
Heading
Heading
02/10/2022
Using HTML Geolocation
The getCurrentPosition() method is used to return the user's position.
The example below returns the latitude and longitude of the user's position:
Example:
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"Longitude: " + position.coords.longitude;
}
02/10/2022
Playing a YouTube Video in HTML
To play your video on a web page, do the following:
Upload the video to YouTube
Take a note of the video id
Define an element in your web page
Let the src attribute point to the video URL
Use the width and height attributes to specify the dimension of the player
Add any other parameters to the URL (see below)
Example
24/05/2020
25/04/2020
রমজান, ইফতার ও সাহরির সময়সূচি ২০২০)
16/04/2020
এইচটিএমএল দিয়ে চমৎকার গ্রাফিক্স করা যায়, এটা পিক্সেলওয়াইজ হওয়ায়, ওয়েটবিহীন ও ইন্টারএকটিভ হয়ে থাকে। সহজেই যে কোন প্লাটফর্মে বা কোডের মধ্যে এইচটিএমএল গ্রাফিক্স ব্যবহার করা যায়। এইচটিএমএল গ্রাফিক্স মূলত এর ট্যাগ দিয়ে করা হয়ে থাকে, মোটামুটি এর সকল ধরনের প্রোপার্টিস ও জাভাস্ক্রিপ্ট এ এর ইন্টারএকশন করতে পারলেই সুন্দর গ্রাফিক্স এবং মোশন গ্রাফিক্স (এনিমেশন), গেমস অবজেক্ট তৈরি করা সম্ভব।
HTML Graphics on JS এইচটিএমএল দিয়ে চমৎকার গ্রাফিক্স করা যায়, এটা পিক্সেলওয়াইজ হওয়ায়, ওয়েটবিহীন ও ইন্টারএকটিভ হয়ে থাকে। সহজেই যে কোন .....
10/11/2019
C Programming, প্রোগ্রামিং এ হাতে খড়ি সি ভাষা অ্যাসেম্বলি ভাষার কাছাকাছি। যখনই আমাদের হার্ডওয়্যারটির সাথে ইন্টারঅ্যাক্ট করতে হবে তখন আমাদের এমন একট...
04/11/2019
OOP Concept, চলো শিখি সফটওয়্যার ডেভলপমেন্ট আধুনিক প্রযুক্তি নির্ভর বিশ্বের সাথে তাল মিলিয়ে চলতে গেলে, আমাদের তথ্যপ্রযুক্তি সম্পর্কিত জ্ঞানের পরিসীমা অবশ্...