Posts

Daly uses Sentence Day1

Daly uses Sentence                                        Day 1  Food for mind: Your mind is your master, it can break you or make you, you can become a mentally Strong or strongly mental, you can have a hopeless end or endless hope. The best way punishes a person who has done a wrong to us is to do good to him so that he feels ashamed for what he has done to us. Feeling are just visitors, let them come and go. Happiness can’t be travelled to, owned, earned. Happiness is the spiritual experience of living every moment with love and peace. The goal of meditation is not control your thought, 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 question is important in your life are make you to live in present.           1)   where are you? Ans: In this moment.   ...

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...

Switch ,Array, Events in JavaScript

Image
 Switch  <html> <head>   <title>Switch Case with Buttons</title> </head> <body> <label for="a">Enter the first number:</label> <input type="number" id="num1"><br> <label for="b">Enter the second number:</label> <input type="number" id="num2"><br><br>   <button id="button1">Add</button>   <button id="button2">Mod</button>   <button id="button3">Del</button><br><br>   <div id="show"></div>   <script>   function fun1()   {   const a = parseFloat(document.getElementById("num1").value);   const b = parseFloat(document.getElementById("num2").value);      const c=a+b;   document.getElementById('show').innerHTML =  'Addition is ='+c ;   }    function fun2()   {   const a = parseFloat(document.getElementB...