Html

Html Full stack web developer guidelines It is better for newcode master

25/03/2019

Now I am starting writing on this page
And we now cover topic like Html,CSS, JavaScript,nodejs ,react,dom in JavaScript and many other web technologies to our page

Stay continued.....

First you want to install wordpress from https://www.wordpress.org then install it on your local host and serverI will s...
30/12/2018

First you want to install wordpress from https://www.wordpress.org then install it on your local host and server
I will show you step by step how to install wordpress

Open source software which you can use to easily create a beautiful website, blog, or app.

02/10/2018

What is WordPress dear did you know about this term or not
Today I will explain to you what is WordPress and PHP
Simply WordPress is a CMS
Then you asked me what is CMS
CMS (=contant management system)
Although it is open source software and by this software, you can make your own website without a single line of code in PHP, Html, javascript, and CSS so it good for who those don't want to learn these programming languages to make a beautiful and stylish website

24/09/2017

The image you want to add in your html code
Is must present in the folder where you html file is saved

The  TagThe  tag is used to insert an image. It contains only attributes, and does not have a closing tag. The image's U...
24/09/2017

The Tag

The tag is used to insert an image. It contains only attributes, and does not have a closing tag.

The image's URL (address) can be defined using the src attribute.

The HTML image syntax looks like this:



Image Location

You need to put in the image location for the src attribute that is between the quotation marks.

For example, if you have a photo named "tree.jpg" in the same folder as the HTML file, your code should look like this:

html>

first page






In case the image cannot be displayed, the alt attribute specifies an alternate text that describes the image in words. The alt attribute is required.

Image Resizing

To define the image size, use the width and height attributes.
The value can be specified in pixels or as a percentage:



first page








Loading images takes time. Using large images can slow down your page, so use them with care.

Image Border

By default, an image has no borders. Use the border attribute within the image tag to create a border around the image.



By default, Internet Explorer 9, and its earlier versions, display a border around an image unless a border attribute is defined.

Credit sololearn

Creating a BlogThroughout this course, we'll help you practice and create your own unique blog project, so you'll retain...
17/09/2017

Creating a Blog

Throughout this course, we'll help you practice and create your own unique blog project, so you'll retain what you've learned and be able to put it to use. Just keep going and follow the instructions in the TASK section. This is what your finished blog page will look like.

TASK: Tap Try It Yourself to see the code and its output.

HTML code




My Blog







Sankalp choudhary





About Me

Hey! I'm sankalp. Coding has changed my world. It's not just about apps. Learning to code gave me problem-solving skills and a way to communicate with others on a technical level. I can also develop websites and use my coding skills to get a better job. And I learned it all at SoloLearn where they build your self-esteem and keep you motivated. Join me in this rewarding journey. You'll have fun, get help, and learn along the way!

"Declare variables, not war"





My Coding Schedule


Day
Mon
Tue
Wed
Thu
Fri


8-8:30
Learn






9-10

Practice





1-1:30


Play




3:45-5



Code



6-6:15




Discuss








My Skills

HTML


JavaScript


Python









My Media






Contact Me





















Follow Me















© 2017 My Blog. All rights reserved.





CSS code

html {
margin: 0;
padding: 0;
}
body {
font-family: 'Handlee', cursive;
font-size: 13pt;
background-color: ;
padding: 10px;
margin: 0;
}
h1 {
font-size: 15pt;
color: ;
text-align: center;
padding: 18px 0 18px 0;
margin: 0 0 10px 0;
}
h1 span {
border: 4px dashed ;
padding: 10px;
}
p {
padding: 0;
margin: 0;
}img-circle {
border: 3px solid white;
border-radius: 50%;
}section {
background-color: ;
padding: 15px;
margin-bottom: 10px;
border-radius: 10px;
}
{
background-image: url("https://www.sololearn.com/Uploads/header.jpg");
background-size: cover;
}
img {
display: block;
width: 80px;
height: 80px;
margin: auto;
}
p {
font-size: 25pt;
color: ;
padding-top: 5px;
margin: 0;
font-weight: bold;
text-align: center;
}quote {
font-size: 12pt;
text-align: right;
margin-top: 10px;
}
table {
width: 100%;
}
table, th, td {
border: 2px solid ;
border-collapse: collapse;
text-align: center;
table-layout: fixed;
}selected {
background-color: ;
font-weight: bold;
color: white;
}
li {
margin-bottom: 15px;
font-weight: bold;
}
progress {
width: 70%;
height: 20px;
color: ;
background: ;
}
progress::-webkit-progress-bar {
background: ;
}
progress::-webkit-progress-value {
background: ;
}
progress::-moz-progress-bar {
color: ;
background: ;
}
iframe, audio {
display: block;
margin: 0 auto;
border: 3px solid ;
}
hr {
border: 0;
height: 1px;
background: ;
}
form {
text-align: center;
margin-top: 0;
}submit {
background-color: ;
padding: 12px 45px;
border-radius: 5px;
cursor: pointer;
color: ;
border: none;
outline: none;
margin: 0;
font-weight: bold;
}submit:hover {
background-color: ;
}
textarea {
height: 100px;
}
input, textarea {
margin-bottom: 10px;
font-size: 11pt;
padding: 15px 10px 10px;
border: 1px solid ;
background-color: ;
color: #787575;
border-radius: 5px;
width: 70%;
outline: none;
}face {
transform: scale(0.4);
margin: 0 auto;
display: block;
margin-top: -35px;
margin-bottom: -25px;
}
img {
height: 50px;
width: 50px;
margin-left: 7px;
margin-right: 7px;
}
a {
text-decoration: none;
}
img:hover {
opacity: 0.8;
}
{
text-align: center;
}copyright {
font-size: 8pt;
text-align: right;
padding-bottom: 10px;
color: grey;
}

Don't be afraid of long codes. By the time you complete the course, everything will make complete sense and look highly doable. We guarantee it!

TASK:
1. Open the code.
2. On the top header, change the name to your own name.
3. Change the page title. Remember, the page title is located inside the tag in the of the page.

Credit:solo learn app

06/09/2017

Java Hammond for check internet connection

package com.computersgyan.java;
import java.net.URL;
import java.net.URLConnection;

public class CheckInternetConnection{

public static void main(String[] args){
try
{
URL url = new URL("https://www.google.co.in");
URLConnection connection = url.openConnection();
connection.connect();
System.out.println("Internet is Connected in your computer");
}
catch (Exception e)
System.out.println("Sorry, No Internet Connection");
}
}
}

06/09/2017

CSS

Cascading style sheet (CSS) is the language for portraying the presentation of Web pages, including colors, format, and text styles. Style sheets have been utilized as a part of web architecture for a considerable time period. These templates can be connected to any page of a site and subtle elements the plan format of a website page or archive as far as components, for example, typeface, size and shading for header and body content. They are comprised of style decides that advise a program how to introduce a Doc.

Why CSS?

The core benefit of using CSS syntax over HTML is that the styling for pages are kept totally isolated from the site content. CSS gives more access over the presence of a Web page to the page creator than to the program designer or the user, by using CSS, the wellsprings of style definition for a component are in a specific order of priority which is given below:

STYLE attribute on an exclusive element tag
The STYLE component that characterizes a particular template containing style assertions or a LINK component that connects to a different record containing the STYLE component. On a Web page, the STYLE component is put between the TITLE and the BODY statements.
An imported template, utilizing the CSS notation to consequently import and unite an outside template with the current template.
Style properties indicated by the user in the browser.
The default template expected by the browser.
Generally the Web page creator’s template outweighs everything else, except it’s suggested that programs give approaches to the watcher to supersede the style properties in a few regards. Since it’s presumable that distinctive programs will execute CSS1 to some degree in an unexpected way, the Web page maker must test the page with various programs.

See
06/09/2017

See

Cascading style sheet (CSS) is the language for portraying the presentation of Web pages, including colors, format, and text styles.

04/09/2017

The layout of HTML is very basic. With the body tag alone there are not many options. On the other hand, Tables are the bread and butter of HTML layouts. Including table themselves, any element may be placed inside of a table. Example Output-Table Inside Table The black one is the inner table and th...

17/08/2017

🔥🔥🔥
Most learned by the community today.

Address

Bhinmal

Alerts

Be the first to know and let us send you an email when Html posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Establishment

Send a message to Html:

Share

Category