Wednesday, December 18, 2019

projects

Yash Talaiche
Teaching BOT 

A Bot which can tech you about some few programming languages like, JavaScript,C,and other as HTML, Css,or Hacking.


Let’s face it, robots are cool. They’re also going to run the world some day, and hopefully, at that time they will take pity on their poor soft fleshy creators and help us build a space utopia filled with plenty.
The bot is simply made with Whatsapp Auto Reply , which auto reply to your question.
In other words, programming a simulated robot is analogous to programming a real robot.

The Challenge of the Programmable Robot

The fundamental challenge of all robotics is this-  It is impossible to ever know the true state of the environment. Robot control software can only guess the state of the real world based on measurements returned by its sensors. 
our WhatsApp Bot Is here:

For Joining the WhatsApp Teaching Bot about Programming click the above link:-
https://chat.whatsapp.com/HIdSpfQ1NYGKGRlY4Aw0w2
                         
                                                       

Saturday, October 26, 2019

HTML Login Form Code

Yash Talaiche
Login Form 

A Simple Login Form in HTML CSS and JavaScript.
   Here is an example of html login page code. In this example, we have displayed one text field, Password,and Login button.
Login page is used in most of the dynamic website to validate user based on their credentials. For making login page for websites HTML form and HTML elements are used. Text field is used to accept username and password text field is used to accept password from user.



Source Code :

<html>

<head>
<title>login form</title>
<style>

.login-page {

  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background:skyblue;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #43A047;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
body {
  background: -webkit-linear-gradient(right, #76b852, #8DC26F);
  background: -moz-linear-gradient(right, #76b852, #8DC26F);
  background: -o-linear-gradient(right, #76b852, #8DC26F);
  background: linear-gradient(to left, #76b852, #8DC26F);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;      
}
</style>
</head>
<body>
<div class="login-page">
  <div class="form">
    <form class="login-form">
      <input type="text" placeholder="username"/>
      <input type="password" placeholder="password"/>
      <button>login</button>
      <p class="message">Not registered? <a href="#">Create an account</a></p>
    </form>
  </div>
</div>

<script>

$('.message a').click(function(){
   $('form').animate({height: "toggle", opacity: "toggle"}, "slow");
});
</script>
</body>

</html>



Output :



The <form ></form> tag of HTML is the heart of creating user entry form in web application which takes the user input data and finally submit it to server side program for further processing. Data of all the input or hidden field is taken and submitted to the server through form tag. The "submit" button is used to initiate form data submit to the server. You can also use JavaScript code for submitting the form. For example if your form name is "login Form" then following JavaScript code can be called for submitting the form programmatically.

Friday, October 25, 2019

How To Insert Video To HTML Page

Yash Talaiche
How to Insert video to HTML page.


There are several ways of inserting a video to your HTML page. The <embed>, <frame> and <object> tags were being used for inserting videos into an HTML page.

To insert a video in an HTML page, use the <video> element. It specifies a standard way to embed a video in HTML. Just keep in mind to add height and width to the video. Use the source element to add the source of the video, with the src attribute.



Now To Insert video file to HTML file use the following Code given below


<video width="320" height="240" controls>
  <source src="video.mp4" type="video/mp4">
</video>


output :




How it work...

The controls attribute adds video controls, like play, pause, and volume.
It is a good idea to always include width and height attributes. If height and width are not set, the page might flicker while the video loads.
The <source> element allows you to specify alternative video files which the browser may choose from. The browser will use the first recognized format.


How To Set Video Auto-play

To set autoplay for the video you just need to add the autoplay attribute for the <video> tag like this:



<video width="320" height="240" controls autoplay>
  <source src="video.mp4" type="video/mp4">
</video>



Insert Videos from Youtube Using the <iframe> Tag

The easiest way to play videos in HTML, is using YouTube as a source. First, you need to upload the video to YouTube or copy the embed code of an existing video which will be inserted in a <iframe> element in your web page.
To have the embed link of the YouTube video follow these simple steps:
  1. Open the video on YouTube and click the share button.
  2. Open the Embed code.
  3. Copy the Source link.
<iframe width="500" height="320" src="http://www.youtube.com/embed/1cZWo6hiuI"
>
</iframe>


 

Monday, October 14, 2019

How to Insert Image in HTML

Yash Talaiche
How to Insert image on Web Pages

Images enhance visual appearance of the web pages by making them more interesting and colorful.

The <img> tag is used to insert images in the HTML documents. It is an empty element and contains attributes only. 
The syntax of the <img> tag can be given with:
<img src="url" alt="some_text">
Each image must carry at least two attributes: the src attribute, and an alt attribute.
The src attribute tells the browser where to find the image. Its value is the URL of the image file.
 the alt attribute provides an alternative text for the image, if it is unavailable or cannot be displayed for some reason. Its value should be a meaningful substitute for the image.

Set the Width and Height of an Image

The width and height attributes are used to specify the width and height of an image.
The values of these attributes are interpreted in pixels by default.
<img src="dog.jpg" alt="dogs" width="300" height="300">
You can also use the style attribute to specify width and height for the images.
<img src="dog.jpg" alt="dogs" style="width: 300px; height: 300px;">

source code :
<html>
<head>
<title>Sample</title>
</head>
<body>
<h1>image </h1>
<img src ="dog.jpg"alt="dog" height="300px" width="350px"/>
</body>
</html>
output:










How to change body background in HTML

Yash Talaiche
How To Change Body Background In HTML




To set the background color in HTML, use the style attribute. The style attribute specifies an inline style for an element. The attribute is used with the HTML <body> tag, with the CSS property background-color. HTML5 do not support the <body> tag bgcolor attribute, so the CSS style is used to add background color. The bgcolor attribute deprecated in HTML5
To change body background in HTML use following code...

code :

<html>
<head>
<title>Sample</title>
</head>
<body style="background-color:green;">
<h1> Backround is green.</h1>
</body>
</html>

output :




All major browsers support the <body bgcolor> attribute.
Note:
  • HTML 5 does not support the <body bgcolor> attribute. Use CSS for this purpose. How? By using the following code: <body style="background-color: color"> Of course, you can also do it in a separate document instead of an inline method.
  • Do not use RGB value in <body bgcolor> attribute because rgb() is for CSS only, that is, it will not work in HTML.

Monday, October 7, 2019

HOW TO INSERT AUDIO IN HTML

Yash Talaiche
How to Insert Audio in HTML 

The <audio> tag defines sound, such as music or other audio streams.

In HTML To insert Audio  to your HTML code use the given tag below...



Source code :

<audio src="info.mp3" autoplay="true" controls></audio>

Output :

Audio Syntax

               The <audio> element defines an in-browser audio player. The audio player can provide a single piece of audio content. To specify the source file of the audio content, use one or more <source> elements inside the <audio> element. All <source> files should contain the same audio content, but in different file formats. The browser will select the first file format that it is able to play. (So order them according to your preference.) If you are not going to provide multiple source file formats, you may indicate the source file in the src attribute, instead of in a separate <source> element.

Wednesday, August 28, 2019

About Programming Languages

Yash Talaiche
Programming  Languages
     Programming involves tasks such as: analysis, generating algorithms, profiling algorithms' accuracy and resource consumption, and the implementation of algorithms in a chosen programming language (commonly referred to as coding).
 
Computer programming is the process of designing and building an executable computer program for accomplishing a specific computing task


A programming language is also known as a programming system, computer language or computer system.

An algorithm is described using the programming language. Programming languages are typically called computer languages; however, some authors deem programming languages to be subsets of computer languages. Since the oldest forms of programming languages like COBOL and FORTRAN, thousands of computer languages have been developed
   
There are some programming languages are :-
       
  • Ruby.
  • JavaScript. 
  • C# 
  • PHP
  • Objective-C.
  • java
  • C++
  • python
  • SQL

Wednesday, August 14, 2019

HTML Editor

Yash Talaiche
HTML Editor for Windows

NOTEPAD++





About

Notepad++ is a free  source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.



ATOM




About

Atom is a free and open-source text and source code editor for macOS, Linux, and Microsoft Windows with support for plug-ins written in Node.js, and embedded Git Control, developed by GitHub. Atom is a desktop application built using web technologies.





SUBLIME





About

Sublime Text is a proprietary cross-platform source code editor with a Python application programming interface. It natively supports many programming languages and markup languages, and functions can be added by users with plugins, typically community-built and maintained under free-software licenses.


BRACKETS













About

Brackets is a source code editor with a primary focus on web development. Created by Adobe Systems, it is free and open-source software licensed under the MIT License, and is currently maintained on GitHub by Adobe and other open-source developers. It is written in JavaScript, HTML and CSS. 






Sunday, August 11, 2019

HTML COLOR CODE

Yash Talaiche



HTML Color Codes


HTML color codes and names.


Red colors


Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
lightsalmon #FFA07A rgb(255,160,122)
salmon #FA8072 rgb(250,128,114)
darksalmon #E9967A rgb(233,150,122)
lightcoral #F08080 rgb(240,128,128)
indianred #CD5C5C rgb(205,92,92)
crimson #DC143C rgb(220,20,60)
firebrick #B22222 rgb(178,34,34)
red #FF0000 rgb(255,0,0)
darkred #8B0000 rgb(139,0,0)

Orange colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
coral #FF7F50 rgb(255,127,80)
tomato #FF6347 rgb(255,99,71)
orangered #FF4500 rgb(255,69,0)
gold #FFD700 rgb(255,215,0)
orange #FFA500 rgb(255,165,0)
darkorange #FF8C00 rgb(255,140,0)

Yellow colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
lightyellow #FFFFE0 rgb(255,255,224)
lemonchiffon #FFFACD rgb(255,250,205)
lightgoldenrodyellow #FAFAD2 rgb(250,250,210)
papayawhip #FFEFD5 rgb(255,239,213)
moccasin #FFE4B5 rgb(255,228,181)
peachpuff #FFDAB9 rgb(255,218,185)
palegoldenrod #EEE8AA rgb(238,232,170)
khaki #F0E68C rgb(240,230,140)
darkkhaki #BDB76B rgb(189,183,107)
yellow #FFFF00 rgb(255,255,0)

Green colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
lawngreen #7CFC00 rgb(124,252,0)
chartreuse #7FFF00 rgb(127,255,0)
limegreen #32CD32 rgb(50,205,50)
lime #00FF00 rgb(0.255.0)
forestgreen #228B22 rgb(34,139,34)
green #008000 rgb(0,128,0)
darkgreen #006400 rgb(0,100,0)
greenyellow #ADFF2F rgb(173,255,47)
yellowgreen #9ACD32 rgb(154,205,50)
springgreen #00FF7F rgb(0,255,127)
mediumspringgreen #00FA9A rgb(0,250,154)
lightgreen #90EE90 rgb(144,238,144)
palegreen #98FB98 rgb(152,251,152)
darkseagreen #8FBC8F rgb(143,188,143)
mediumseagreen #3CB371 rgb(60,179,113)
seagreen #2E8B57 rgb(46,139,87)
olive #808000 rgb(128,128,0)
darkolivegreen #556B2F rgb(85,107,47)
olivedrab #6B8E23 rgb(107,142,35)

Cyan colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
lightcyan #E0FFFF rgb(224,255,255)
cyan #00FFFF rgb(0,255,255)
aqua #00FFFF rgb(0,255,255)
aquamarine #7FFFD4 rgb(127,255,212)
mediumaquamarine #66CDAA rgb(102,205,170)
paleturquoise #AFEEEE rgb(175,238,238)
turquoise #40E0D0 rgb(64,224,208)
mediumturquoise #48D1CC rgb(72,209,204)
darkturquoise #00CED1 rgb(0,206,209)
lightseagreen #20B2AA rgb(32,178,170)
cadetblue #5F9EA0 rgb(95,158,160)
darkcyan #008B8B rgb(0,139,139)
teal #008080 rgb(0,128,128)

Blue colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
powderblue #B0E0E6 rgb(176,224,230)
lightblue #ADD8E6 rgb(173,216,230)
lightskyblue #87CEFA rgb(135,206,250)
skyblue #87CEEB rgb(135,206,235)
deepskyblue #00BFFF rgb(0,191,255)
lightsteelblue #B0C4DE rgb(176,196,222)
dodgerblue #1E90FF rgb(30,144,255)
cornflowerblue #6495ED rgb(100,149,237)
steelblue #4682B4 rgb(70,130,180)
royalblue #4169E1 rgb(65,105,225)
blue #0000FF rgb(0,0,255)
mediumblue #0000CD rgb(0,0,205)
darkblue #00008B rgb(0,0,139)
navy #000080 rgb(0,0,128)
midnightblue #191970 rgb(25,25,112)
mediumslateblue #7B68EE rgb(123,104,238)
slateblue #6A5ACD rgb(106,90,205)
darkslateblue #483D8B rgb(72,61,139)

Purple colors

Color HTML / CSS
 Color Name
Hex Code
 #RRGGBB
Decimal Code
(R,G,B)
lavender #E6E6FA rgb(230,230,250)
thistle #D8BFD8 rgb(216,191,216)
plum #DDA0DD rgb(221,160,221)
violet #EE82EE rgb(238,130,238)
orchid #DA70D6 rgb(218,112,214)
fuchsia #FF00FF rgb(255,0,255)
magenta #FF00FF rgb(255,0,255)
mediumorchid #BA55D3 rgb(186,85,211)
mediumpurple #9370DB rgb(147,112,219)
blueviolet #8A2BE2 rgb(138,43,226)
darkviolet #9400D3 rgb(148,0,211)
darkorchid #9932CC rgb(153,50,204)
darkmagenta #8B008B rgb(139,0,139)
purple #800080 rgb(128,0,128)
indigo #4B0082 rgb(75,0,130)

Pink colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
pink #FFC0CB rgb(255,192,203)
lightpink #FFB6C1 rgb(255,182,193)
hotpink #FF69B4 rgb(255,105,180)
deeppink #FF1493 rgb(255,20,147)
palevioletred #DB7093 rgb(219,112,147)
mediumvioletred #C71585 rgb(199,21,133)

White colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
white #FFFFFF rgb(255,255,255)
snow #FFFAFA rgb(255,250,250)
honeydew #F0FFF0 rgb(240,255,240)
mintcream #F5FFFA rgb(245,255,250)
azure #F0FFFF rgb(240,255,255)
aliceblue #F0F8FF rgb(240,248,255)
ghostwhite #F8F8FF rgb(248,248,255)
whitesmoke #F5F5F5 rgb(245,245,245)
seashell #FFF5EE rgb(255,245,238)
beige #F5F5DC rgb(245,245,220)
oldlace #FDF5E6 rgb(253,245,230)
floralwhite #FFFAF0 rgb(255,250,240)
ivory #FFFFF0 rgb(255,255,240)
antiquewhite #FAEBD7 rgb(250,235,215)
linen #FAF0E6 rgb(250,240,230)
lavenderblush #FFF0F5 rgb(255,240,245)
mistyrose #FFE4E1 rgb(255,228,225)

Gray colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
gainsboro #DCDCDC rgb(220,220,220)
lightgray #D3D3D3 rgb(211,211,211)
silver #C0C0C0 rgb(192,192,192)
darkgray #A9A9A9 rgb(169,169,169)
gray #808080 rgb(128,128,128)
dimgray #696969 rgb(105,105,105)
lightslategray #778899 rgb(119,136,153)
slategray #708090 rgb(112,128,144)
darkslategray #2F4F4F rgb(47,79,79)
black #000000 rgb(0,0,0)

Brown colors

Color HTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
cornsilk #FFF8DC rgb(255,248,220)
blanchedalmond #FFEBCD rgb(255,235,205)
bisque #FFE4C4 rgb(255,228,196)
navajowhite #FFDEAD rgb(255,222,173)
wheat #F5DEB3 rgb(245,222,179)
burlywood #DEB887 rgb(222,184,135)
tan #D2B48C rgb(210,180,140)
rosybrown #BC8F8F rgb(188,143,143)
sandybrown #F4A460 rgb(244,164,96)
goldenrod #DAA520 rgb(218,165,32)
peru #CD853F rgb(205,133,63)
chocolate #D2691E rgb(210,105,30)
saddlebrown #8B4513 rgb(139,69,19)
sienna #A0522D rgb(160,82,45)
brown #A52A2A rgb(165,42,42)
maroon #800000 rgb(128,0,0)