Breaking News

Search This Blog

Showing posts sorted by relevance for query html. Sort by date Show all posts
Showing posts sorted by relevance for query html. Sort by date Show all posts

Saturday, July 14, 2018

8:23 AM

HTML Introduction,HTML

HTML Introduction

Tutorial:1


What is HTML?



  1. HTML is the pleasant/standard markup language for creating web pages.
  2. HTML stands for Hyper Text Markup Language
  3. Explains the structure of web pages using HTML markup
  4. HTML elements are represented by tags
  5. Browsers obtain not display HTML tags, but use them to adroitness content of the page

What are HTML tags?

  1.  HTML tags are used to mark HTML elements
  2.  HTML tags are surrounded by two letters <and>
  3.  The surrounding special elements are called angle bracket"<,>"
  4.  HTML tags generally come in pairs like <b> and </ b>
  5.  The first tag is the start tag in a pair, the second tag is the end tag
  6.  Text element between start and end tag is content
  7.  HTML tags are not case-sensitive, <b> means the same as <B> not capital or small letter issue


Example:-


<html>
   <head>
      <title>Page Title</title>
   </head>
        <body>

             <h1>my first Heading</h1>
             <p>my first paragraph</p>

         </body>
</html>



Save :-   file name.htm or .html



output:-



Friday, August 3, 2018

12:14 AM

HTML First Simple Program

HTML First Simple Program


HTML First Simple Program



<html>

<head><title> first web page</title>

</head>

<body>

<center><p> technical suryansh </p></center<br>

<p> line brack is use before it</p><br>

<h1> technical suryansh heading 1</h1>

</body>

</html>

Short Description:-

<html>: It is the first tag of any web page /website.

</html>:-It is the last tag of any web page /website.

<title>  :- this tag is use to insert tag in our web pages this title is show top of browser

<p>    :- It is use to write paragraph in our we page

<br>  :-It is use to brack the line ,it not have any end tag so this tag is know empty tag

<h1>....<h7>:- this tag is used for headings h1 tage is used for large headings and h7 is used for small headings

save it


OutPut



Saturday, July 14, 2018

9:12 AM

html Headings



Headings, <Hx> </Hx>



Inside the body element, elements of H1 to H6 elements are usually used for the major divisions of the document. Titles are allowed to appear in any order, but if you follow these guidelines, then you will get the best results when your documents appear in the browser:


  1. H1: Should be used as the title of the highest level, H2 as the next highest, and much further.
  2. You should not miss title levels: For example, H3 should not appear after H3, unless there is no H2 between them.

Headings are defined with the <h1> to <h6>tags.

<h1>defines the largest heading while <h6>defines the smallest.

<h1>This is a heading</h1>

<h2>This is a heading</h2>

<h3>This is a heading</h3>

<h4>This is a heading<./h4>

<h5>This is a heading</h5>
<h6<This is a heading</h6>
HTML automatically adds an extra blank line before and after a heading. A useful heading attribute is align. 

MOST POPULAR

  1. HTML First Simple Program
  2. Hello : How to Create Your First Java Program
  3. how to run java program in CMD
  4. How to set Environment Variables in Java: Path and Classpath


8:56 AM

HTM Elements

HTM Elements/Tags




Logical vs. Physical Tags


There are two tag logical tags and physical tags in HTML. Logical tags are designed to mean the attached text to the browser. An example tag of the logical tag is By inserting text between these tags, you are telling the browser that the text has some value. By default all browsers look bold between text and text.

On the other hand, physical tags provide specific text to which text they attach. Examples of physical tags include:

  1. <b>: Makes the text bold.  
  2. <big>: Makes the text usually one size bigger than what's around it. 
  3. <li>: Makes text italic. 


Start tagElement contentEnd tag
<h1>My First Heading</h1>
<p>My first paragraph.</p>

<body>

The <body> element defines the document body.
It has a start tag <body> and an end tag </body>.
The element content is two other HTML elements (<h1> and <p>).


<h1>


The <h1> element called a heading tag .
It use to write the heading in html
It is the biggest heading tag .ait display most big headings.
It has a start tag <h1>. 
It has a  end tag </h1>.
<p>
The <p> element defines a paragraph.
It has a start tag <p> and an end tag </p>.
The element content is: My first paragraph.
  example:-
<p>My first paragraph.</p>



Sunday, June 23, 2019

1:31 AM

PHP in Hindi and english both

PHP in Hindi







Introduction to PHP

PHP एक open source server side scripting लैंग्वेज है। PHP dynamic webpages develop करने के लिए use की जाती है। PHP का पूरा नाम PHP Hypertext Preprocessor है। पहले इसे Personal Home Pages के नाम से जाना जाता था।

PHP in Hindi: PHP एक सर्वर साइड स्क्रिप्टिंग भाषा है। यही है, यह एक स्क्रिप्टिंग भाषा है जो सर्वर साइड में किसी वेब एप्लिकेशन या वेब पेज को नियंत्रित करने के लिए उपयोगी है। वर्तमान में, 70% से अधिक वेब साइट्स और वेब एप्लिकेशन अपाचे वेब सर्वर पर चलते हैं और अपाचे वेब सर्वर पर सबसे अधिक उपयोग की जाने वाली स्क्रिप्टिंग भाषा PHP है, जो किसी अन्य वेब स्क्रिप्टिंग भाषा की तुलना में बहुत सरल है।


PHP in Hindi: PHP is a Server Side Scripting Language. That is, it is a Scripting language that is useful for controlling a Web Application or Web Page in Server Side. At present, more than 70% of Web sites and Web applications run on the Apache Web Server and the most widely used scripting language on the Apache Web server is PHP, which is much simpler than any other Web Scripting Language is.


About PHP
PHP Language को HTML or HTML5 इस scripting Language में embed किया गया है |
PHP का full-form भूतकाल में Personal Home Page बोला जाता था लेकिन वर्त्तमान में इसे HyperText Proprocessor बोला जाता है |
PHP Language का अविष्कार Rasmus Lerdorf ने 1994 में किया |
PHP ये server-side होने से ये Web server या client machine पर चलाई जाती है |
PHP को चलाना है तो कुछ client machine server की जरुरत पड़ती है जैसे, Xampp, Wamp, Lamp और भी कई servers है |

Thursday, August 2, 2018

11:01 PM

How to disable right click on blogger/website

HOW TO DISABLE RIGHT CLICK ON BLOGGER IN HINDI | BLOGGER ME RIGHT CLICK KO DISABAL KAISE KARE.


How to disable Right click on blogger in Hindi | Delete Blogger's Right Click

If you are logged in as you are trying to log in to your web site, then you have a topic on your topic that you have a blog or a web site, you can only copy the content of your blog to get the matlab You can disavow your blog on the right side of the website.
HOW TO DISABLE RIGHT CLICK ON BLOGGER IN HINDI | BLOGGER ME RIGHT CLICK KO DISABAL KAISE KARE.
How to disable right click on blogger/website



How to disable right click on blogger :-

Point 1 -

If you want to disable your blog or website, click here.\
If you want to delete your blog or website, you have the right to click on the right side of the blog, or if you have any questions or you do not want to delete it, please delete it.


How to disable right click on blogger


Point 2. - Disable the Right Click

Disable the Right Click.

You have the option of copying the blog or website.

If you have a copy of the website you are visiting, you may still be able to visit the website.

If you have an add-on of Adsense website, you can contact us for more information.

If you would like to visit your website or blog, you can post it or you will not be able to make it.

To let you know that you have a right to click on the right side of the blog or your website, then go to Screenshots.

If you want to go to a JavaScript HTML code you do not have access to the download code, you can download it from the download code and download the code to your Blogger link.

Screenshot :-

  • Layout Par Click karne par aap ko Layout ka Interface is trah dikhega aap neche dekh sakte hai mai ne Screenshot diya hai






if you have required video please contact me with contact page




Friday, August 17, 2018

2:22 AM

Java Program Using All Arithmetic and Assignment Operators

Java Program Using All Arithmetic Operators


Java Program Using All Arithmetic and Assignment Operators
Java Program Using All Arithmetic and Assignment Operators


class Arithmetic
{
public static void main(String s[])
{

int a=23, b=18, c;
c=a+b;
System.out.println("addition of two number is"+ c);

int p=23, q=18, r;
r=p*q;
System.out.println("multiply of two number is"+ r);

int w=23, e=18, x;
x=w/e;
System.out.println("division of two number is"+ x);

int m=23, n=18, o;
o=m-n;
System.out.println("substraction of two number is"+ o);
}

}



Arithmetic Operators
Arithmetic operators are used to perform mathematical operations like addition, subtraction, multiplication etc.
 
Java Arithmetic Operators
OperatorMeaning
+Addition (also used for string concatenation)
-Subtraction Operator
*Multiplication Operator
/Division Operator
%Remainder Operator


Assignment Operator

Assignment operators are used in Java to assign values to variables. For example,
int tech;
tech = 5;


Example 1: Assignment Operator

class AssignmentOperator {
public static void main(String[] args) {

int value1, value2;
// Assigning 5 to value1 value1 = 5; System.out.println(value1);
// Assigning value of variable value2 to value1 value2 = value1; System.out.println(value2); }
}
When you run the program, the output will be:
5
5

*if you have any question comment on this post