Posts

Showing posts from May, 2025

Daily use questions English to Marathi

       Daily use sentences(Questions) Do you have any idea who you are messing with? तुला कल्पना आहे कोनाशी पंगा घेत आहेस ? How long has he been ill? तो केंव्हा पासून आजारी आहे ? Any idea who that could be? काही कल्पना कोण असेल तो ? What are you talking about? कशा संबंधी बोलतोयस ? How long has she been missing? केंव्हा पासून हरवलिय ती ? Who do you work for? कोण साठी काम करतोयस ? Who are you to speak? तू कोण बोलणारा ? who is speaking? कोण बोलतय ? Who are you talking to? तू कोणाशी बोलत होतास ? Who does Meera like? मीराला कोण आवडत ? Who like Meera? मीरा कोणाला आवडते ? What do I like? मला काय आवडते ?    sentence: The storms damaged roof( वाक्य : वादळाने छप्पर खराब केले ) What did storm damaged? वादळाने काय केले ? What damaged the roof? छप्पर कशाने खराब केले ? What will you say to him? काय म्हणशील त्याला ? How long will it take you? किती वेळ लागेल तुला ? What will you use it for? तू कशासाठी वापरणार आहेस? Wi...

English

English Conversational Sentences Hello everyone,  I have created this blog for English learners, and I believe it will help you in your English-speaking journey. If you liked my try, please use it and share it. if you have any suggestions, do comment. food for Mind . Daily questions. Daily use Sentences Day 1.

Daly uses Sentence Day1

Daly uses Sentence                                        Day 1  Food for the mind: Your mind is your master, it can break you or make you, you can become mentally Strong or strongly mental, you can have a hopeless end or endless hope. The best way to punish a person who has done wrong to us is to do good to him so that he feels ashamed for what he has done to us. Feelings are just visitors, let them come and go. Happiness can’t be travelled to, owned, or earned. Happiness is the spiritual experience of living every moment with love and peace. The goal of meditation is not to control your thoughts; it’s to stop letting them control you. When I accept myself. I am freed from the burden of needing you to accept me. Three questions are important in your life that make you live in the present.    Where are you? Ans: In this moment.  What time is it? Ans: This mov...

What is Web browser, Web Server, DNS, Web Hosting?

  What is Web Browser? Web browser is an application to access webpages. Webpages are written in HTML. User type the website address in web browser, web browser send request to web server then web server sends back requested page, it also called client server reacknowledge. Many types of web browsers are available now a day like Google, Firefox, Mozilla, opera, Safari, etc. Web browser also provides other services like bookmark, managing history, extensions for customers, etc. What is Web Server? Web Server is a system software which access the request from client via http and send back to the browser. It host and deliver webpages as well as other content like images, audio, video, other software.   Web server comes in various type like Apache HTTP, Nginx, Microsoft IIs, etc.   What is DNS? DNS stands for Domain Name System. Domain is a unique webpage address, which help us to reach our desired page. IP stand for internet Protocol which has numeric...

BCAFY-WEBTECH

BCAFY-WEBTECH Introduction to HTML Introduction to CSS Basic Tag in HTML Table Tag Frame Tag Form Tag Create Navigation Menu using HTML and CSS. Create Resume using HTML and CSS. Introduction to JavaScript. Array And Switch in JavaScript. Event driven Program in JavaScript. Form validation Program in JavaScript. Create Calculator using HTML and CSS JavaScript. Introduction to  Web browser, web server, DNS and Webhosting. Introduction to Json and Xml. Introduction to BOOTSTRAP, AJAX, DTD, XSL.

what is Bootstrap, Ajax, DTD, XSL?

  What is Bootstrap? Bootstrap is a front-end open source framework to build responsive websites. Bootstrap provides us predesigned CSS styles, JavaScript components. Bootstrap create web interfaces, and attractive HTML templates. How to use Bootstrap? There are two ways to use Bootstrap in your webpage 1.      Using the Content Delivery Network (CDN): Without download Bootstrap just copy the CSS, JS, file link from Bootstrap.com or w3c link and paste it within the <head> section: 2.      Download Bootstrap and Include Files Locally: Download compiled CSS and JS files. Unzip the downloaded file and Extract the CSS, JS Files and link it within the <head> section. Example: <html> <head> <title>my Resume</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">   <!-- jQuery library --> <script src="https://ajax.g...

Xml file and JSON text to JavaScript object Program

What is Xml? Xml stands X for eXtensible M for Markup L for Language. XML is a self-descriptive language for storing and transporting data. It is recommended by W3C(World Wide Web Consortium . ) Create XML file To stored student Information <studentList> <rno>1</rno> <name>ram</name> <class>bcafy</class> <Dob>11/1/2004</Dob> <EmailId>ram@gmail.com</EmailId> <rno>2</rno> <name>rahim</name> <Mobileno>bcafy</Mobileno> <Dob>1/1/2004</Dob> <EmailId>rahim@gmail.com</EmailId> <rno>3</rno> <name>Rocy</name> <Dob>1/6/2004</Dob> <EmailId>rocy@gmail.com</EmailId> </studentList> write a program to transform JSON text to a JavaScript object  <html> <head> <title>json</title></head> <body> <p id="show"> <p id="show1"> <script> const jsonString = ...

Create resumé with HTML and CSS

Image
Create resumé with HTML and CSS  <html> <head> <title>my Resume</title> <style>  body {           border:1px outset black;           width: 21cm;           height: 26cm;           margin: 0px auto;         } .d1{ height:100%; width:100%; } .d2{ padding:30px; margin:25px; box-shadow:0px 0px 8px 2px black; height:850px; width:25%; float:left; position:relative; } .d3{ padding:30px; margin:30px; height:850px; width:45%; float:left; } .photo{ border-radius:50px; padding:30px; margin:25px; box-shadow:0px 0px 15px 2px black; height:100px; width:100px; float:left; } .intro{ line-height:30px; height:150px; width:300px; float:left; } .language{ line-height:30px; height:500px; width:400px; float:left; } .progress-bar{ height:10px; width:100px; border:1px; background:gray; } .progress-bar .Marathi{ height:10px; width:100px; border:1px; back...