abc

Share This blog with your friends, so that we can improve more & more . our aim is to easy & simple way of learning.
Showing posts with label Advance Session. Show all posts
Showing posts with label Advance Session. Show all posts

12/16/2020

Technology Question and answer

 1) Font style tabs in HTML are also known as

- navigation Or menu or scrollspy.


2) Syntax of writing a different font style in HTML

font: normal 12px aerial;

font-family : aerial, sans serif;

font-size: 15px;



get font family from google font https://fonts.google.com/


apply above style for body tag to whole page affect.


3) Which HTML tag is used to give strikethrough effect to text?

for html 4 use <strike>


for html 5 use below example <del> tag 


<!DOCTYPE html>

<html>

<body>


<h1>The del element</h1>


<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>


</body>

</html>



4) What is best site to get HTML templates?

template means design which are ready to use.


themeforest, templatemonster, colorlib


should check whether is responsive or not, it is good thing for SEO


5) How to send email of HTML output?

use PHP mail function

mail($from, $to, $sub, $message);


6) Explain the various attributes necessary to insert drop down list in a HTML page

already post on this same blog 

https://learn-infyleaf.blogspot.com/2020/12/how-to-create-navigation-menu-using.html


7) How to add a app icon in my app with HTML?

visit link - 

https://learn-infyleaf.blogspot.com/2020/12/how-to-create-icons-like-social-media.html


8) How to apply HTML code on our blogs website?

go to theme option - customize - drop down - edit html , change and ensure click on update button


9) Write a HTML program to design a simple website using image and hyperlink

<body>

<img src="abc.jpg" onclick="location.href='mylocation.html'" />


OR 


<p><a href="mylocation.htm"><img src="abc.jpg" /></a></p>


</body>


10) Various design requirements in HTML and approaches to design Web pages

- editor like notepad++, dreamviewver, visual studio. all browser, laptop and mobile to test responsive and works all browser.


11) How to HTML page working on the browser in internal working both English and Hindi?


three method

1) use google translator , which translate original website to various language not only English or Hindi.

2) using site https://mothereff.in/html-entities add your Hindi content and use converted entities in html.

3) use web font like google font



12) The code for inserting an image in an HTML page is imagsrc alt The alt attribute .

<img src="abc.png" alt="sample image" />


13) I design one HTML page but my laptop don't support the center alignment ?


use align="center"

or add margin : 0px auto ;  - style center div position.


14) How to create quiz in HTML with timer?

- use javascript setinterval to start clock, and in clock function set -1 to reverse original time.

- add option using checkbox, link with mysql, just match correct value of checkbox to database value

- count correct answer & wrong answer in php loop & that's set quiz is ready.


15) Open source tools that can be used in project of computer science and engineering can be related to Web development

github have lot of tools or contact us we will to make project.


9/29/2019

How to get More Views on Youtube & earn money

How To Make Youtube Video


1) first open youtube.com ,upload make video, while upload ensure all the point cover.





2)Remember title, thumbnail, description, tag for making final upload. ensure title neat and in one language, thumbnail indicate what exact video is.
description should add all detail, download link, hashtags . ensure all keyword should involved in description .
3) tag  - one to three words make one tag  , do not add irrelevant, same tag, only add relevant and specific maximum 10 keywords.
4) also add keyword to channel.
5) ensure channel name proper & neat.
6) be clear with what exact video.
7) How to Monetize : - you can earn lot by showing ads on your video. but 1000 subscriber and 4000 hr watch time then only ads can start on your video.  remember quality matters.
8) be regular upload video.
9) try to add translation  - in one language so that more viewer get.
10) remember with youtube video should simple, clear with concept.
11) you can also make new channel with one single gmail account , for this you have to create brand account.
12) youtube also provide creator studio and beta studio . in this you can edit your video.
13) video should properly categarized and your own video.

4/08/2018

Advance & special session, connect laptop to laptop or computer or TV AND transfter Data




Connect Laptop To Computer and laptop To TV Connectivity.










Welcome to our special session:

A.Connecting Laptop to computer or another laptop
B. connecting TV to laptop using HDMI


A) --->
1.if you have large number of data.
suppose 10gb, 200gb,
and you want backup to another pc then easiest way is above first option(size not restricted it may be 1mb or 1tb)

2. LAN wire
purchase cross or parallel LAN wire.

3. connect LAN in both point ie. laptop & other laptop.

4. after connect open LAN connection
for this view right bottom corner of windows7(you can use any OS from XP to above)

5. or go to--> Control Panel\Network and Internet\Network and Sharing Center
in this you can view LAN(local area network) connection on both computer or laptop.
 
click on connection in this select ipv4



and in property enter 192.168.0.1 on first PC & another 192.168.0.2

6. now almost done just simply open network
you can view whatever is share by another PC. 


7. approximately 12mbps speed of this type of connection

8. in case any query comment & share your known people using any share media.

sample of LAN CABLE




B) -->


now let us going connect tv to laptop
1. you should have a TV(not need smart TV) in which HDMI or VGA connection .

2. check this by remote, simply press AV button on remote. if you view an HDMI option that means your TV is connect to laptop

3. now start both TV and laptop or computer(i preferred laptop because easily move anywhere, you can desktop also )
4. after connect both point by HDMI cable open HDMI option from remote it will directly show desktop on your TV.
5. you can play movie , marriage video, or anything in case if you don't have USB cable.
6. show presentation on TV not need of smart TV.

sample of HDMI cable

7. thanks for viewing please share & comment.

4/06/2018

Advanced Session on JSON how object declare in javascript




Connect Laptop To Computer and laptop To TV Connectivity.









hi every one today i am going to start session 7 .
let us know some short review on JSON

what is JSON.

JSON: JavaScript Object Notation.
JSON -- > a syntax for storing and exchanging data.
JSON ---> text, written with JavaScript object notation.

var abc = '{ "age":26, "city :PUNE",''name:siddhanam" }';
var anobj = JSON.parse(myJSON);
document.getElementById("abc").innerHTML = myObj.name;

<h2>Convert a string written in JSON format, into a JavaScript object.</h2>
<p id="abc"></p>

if you look at above example you can see declaration of object to variable in short declare, store , transfer in DOM this are main working of JSON.
 above example uses json parse method,
what is json parse???
common use of JSON is to exchange data to/from a web server. When receiving data from a web server, the data is always a string. Parse the data with JSON.parse(), and the data becomes a JavaScript object. 

in above figure shows how json parse  working.

now let us see JSON with php

<!DOCTYPE html>
<html>
<body>

<h2>Example of JSON.</h2>

<p id="abc"></p>

<script>

var xmlhttp = new XMLHttpRequest();

xmlhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
        var myObj = JSON.parse(this.responseText);
        document.getElementById("demo").innerHTML = myObj[2];
    }
};
xmlhttp.open("GET", "trial.php", true);
xmlhttp.send();

</script>

</body>
</html>

in above code there is getting result of trial.php file and assign value to demo div.
suppose you type an address in trial.php or anything data by using this xmlhttp request & get method browser will show result.

json is not need any external installation .
our aim is to gain & share more & more knowledge.
you can comment if any improvement wants or if you want discuss any specific topic.
please share with your friends & all . thanks for viewing this blog. will see more detail in next session.



4/01/2018

Advanced Session on Jquery language




Connect Laptop To Computer and laptop To TV Connectivity.











hey everyone

today i am going to show what is jquery

jquery has library of javascript. which is very easy programming languages

let us learn some advance of jquery language.

1. what is traversing function in jquery.

$('span').not('.trial, .abc'); this is example of traversing:  traversing means select such span which has not name trial or abc.

2. jquery chaining
as name is chain for method this is basically help to join multiple function to each other.
eg:
 $("#abc").click(function(e) {
 alert("click!");
 }).mouseover(function(e) {
 alert("mouse is here!")
 }).mouseout(function(e) {
 alert("mouse oh!hhh gone")
 });

3. siblings for finding similar  of element

eg:$('h1').siblings();

4. ajax get & post
$('#abc').click(funciton(){
$.get("abc.txt", function(data, status){
        alert("Data: " + data + "\nStatus: " + status);
    });
});

5. please like & share to all
if you have any query please comment.
visit our blog learnmayuinfosyssolutions.blogspot.in .

thanks For Watching.


An Introduction to the Laravel Framework: What It Is and Why You Should Use It

  If you're a PHP developer looking for a modern, efficient, and powerful framework to build web applications, look no further than Lara...