Posts

Amazing effect

Amazing effect

amazing effect            Output Cool Effects with Marquees programming program HTML Code php HTML tags JavaScript css java blogspot.com... subscribe to site ">Marquees.. tags. cool ...effects... welcome by saquib HTML Marquees You can also use the  <marquee>  tag to create a marquee. You can make the text/images scroll from right to left, left to right, top to bottom, or bottom to top. The   <marquee> tags  is non-standard HTML. Despite this, it has enjoyed widespread browser support. For a standards-compliant method, see css or bhootstar. If you can't view the examples, it's likely that your browser doesn't support the  <marquee> tags Continuous scrolling text This marquee causes the text to scroll continuously from right to left. Once it disappears from the left, it re-appears from the ...

Vitiligo

Vitiligo is a long-term skin condition characterized by patches of the skin losing their pigment.[1] The patches of skin affected become white and usually have sharp margins.[1] The hair from the skin may also become white.[1] The inside of the mouth and nose may also be involved.[2] Typically both sides of the body are affected.[1] Often the patches begin on areas of skin that are exposed to the sun.[2] It is more noticeable in people with dark skin.[2] Vitiligo may result in psychological stress and those affected may be stigmatized.[1]

Fish effect

Image
                          🐋Fish🏊effect🐟🐋 Input🐋 <html> <body> <style> .scroll-left {  height: 100px;   overflow: hidden;  position: relative; } .scroll-left .inner {  position: absolute;  width: 100%;  height: 100%;  margin: 0;  line-height: 50px;  text-align: center;  /* Starting position */  -moz-transform:translateX(100%);  -webkit-transform:translateX(100%);   transform:translateX(100%);  /* Apply animation to this element */   -moz-animation: scroll-left 15s linear infinite;  -webkit-animation: scroll-left 15s linear infinite;  animation: scroll-left 15s linear infinite; } /* Move it (define the animation) */ @-moz-keyframes scroll-left {  0%   { -moz-transform: translateX(100%); }  100% { -moz-transform: translateX(-100%); } } @-webkit-k...

Bulb cool Effect

Image
💡Bulb on/off💡 Output   Input <!DOCTYPE html> <html> <body> <script> function light(sw) {   var pic;   if (sw == 0) {     pic = "pic_bulboff.gif"   } else {     pic = "pic_bulbon.gif"   }   document.getElementById('myImage').src = pic; } </script> <img id="myImage" src="pic_bulboff.gif" width="100" height="180"> <p> <button type="button" onclick="light(1)">Light On</button> <button type="button" onclick="light(0)">Light Off</button> </p> </body> </html>

Html tags

🌎HTML tags All💪tags to simplify in very  simple method for learn and writing skills . 👇In all steps👇. Steps Step-1 :  sample html coding.... 👈 Click here Step-2 :       paragraph tag....       👈 Click here Step-3 :      heading tag....            👈 Click here Step-4 : horizontal line tag....    👈 Click here Step-5 : text formatting tag... .  👈 Click here Step-6 : Div and span tag....      👈 Click here Step-7 :    E mphasized tag....          👈 Click here

Cool effect

Image
cool effect Post amazing cool effect Output-tags Input-tags <!DOCTYPE > <html> <head> <title></title> <style type="text/css"> .card {   display: grid;   grid-template-columns: 300px;   grid-template-rows: 210px 210px 80px;   grid-template-areas: "image" "text" "stats";   border-radius: 18px;   background: white;   box-shadow: 5px 5px 15px rgba(0,0,0,0.9);   font-family: roboto;   text-align: center; } .card-image {   grid-area: image; } .card-text {   grid-area: text; } .card-stats {   grid-area: stats;  } .card-image {   grid-area: image;   background: url("img1.jpg");   border-top-left-radius: 15px;   border-top-right-radius: 15px;   background-size: cover; } .card-text {   grid-area: text;   margin: 25px; } .card-text .date {   color: rgb(255,...

HTML introduction

Image
HTML stands for HyperText Markup Languages. They uses webpage development for or website.In this language are very easily for design in website.HTML document in makeup and style for CSS.An HTML file can be created using a simple text editor. The most essential Web standards are HTML, CSS, and XML. The latest HTML standard isXHTML 1.0. HTML5. Important & basic tags in html: Example: Creating a simple web page 1. Start Notepad. 2. Type in the following text <html> <head> <title>Title of page</title> </head> <body> Thisis a very basic webpage. </body> </html> 3. Save the file as "firstpage .html ". 4. Double click the saved file the browser will display the page. Example Explained: The first tag in your HTML document is <html>.This tag tells your browser that this is the start of anHTML document. The last tag in your document is </html>. This tag tells your browser that this is the end of the HTML document....