Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

manifest.json

{
  "name": "Getting Started Example",
  "version": "1.0",
  "description": "Build an Extension!",
  "manifest_version": 2
}

Basic CSS - change the color of text and CSS selectors to style an element

<!DOCTYPE html>
<html>
    <style>  
h2 {color: red;} 
    </style> 
 
    <h2>CatPhotoApp</h2> <!-- Also it is possible to ad the style/color of an element by directly adding it into the element code,for example: <h2 style="color: blue;">CatPhotoApp</h2> -->

<!-- 
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  
  <div>
    <p>Things cats love:</p>
    <ul>
      <li>cat nip</li>
      <li>laser pointers</li>
      <li>lasagna</li>
    </ul>
    <p>Top 3 things cats hate:</p>
    <ol>
      <li>flea treatment</li>
      <li>thunder</li>
      <li>other cats</li>
    </ol>
  </div>
  
  <form action="/submit-cat-photo">
    <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
    <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
    <label><input type="checkbox" name="personality" checked> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main> -->
</html>

cvbcvbcvb

<html>
   
   <head>
      <title>AngularJS First Application</title>
   </head>
   
   <body>
      <h1>Sample Application</h1>
      
      <div ng-app = "">
         <p>Enter your Name: <input type = "text" ng-model = "name"></p>
         <p>Hello <span ng-bind = "name"></span>!</p>
      </div>
      
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
      </script>
      
   </body>
</html>

xc cc

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<style type="text/css">
div
{
   width:100px;
   height:75px;
   background-color:red;
   border:1px solid black;
}
#div2
{
   transform:rotate(30deg);
   -ms-transform:rotate(30deg); /* IE 9 */
   -moz-transform:rotate(30deg); /* Firefox */
   -webkit-transform:rotate(30deg); /* Safari and Chrome */
   -o-transform:rotate(30deg); /* Opera */
   background-color:yellow;
}
</style>
</head>
<body>
<div>Hello, World!</div>
<div id="div2">Hello, CSS3!</div>
</body>
</html>

example1

<html>
    <script>
    function main(){
        for (var i=0; i<10; i++){
            
            document.write("Mr. Eric Chou"+"<br>"); 
        }
        
    }
    </script>
<body onload="main()">
</body>    
</html>

Online HTML Editor

<!DOCTYPE html>
<html>
<head>
<title>Name and age</title>
</head>
<body>
    
    <p><i><b><FONT FACE = "Arial" color = "red"><font size = "10"> MY NAME IS GABRIEL FARRUGIA AND I AM 14 YEARS OLD</p></i></b></font>     
    
</body>
</html>

Esercizio prova Fusco Pasquale

<!DOCTYPE html>
<html>
<title>Prova Esercizio</title>
<head> Prova Esercizio:</head>
<body>
Buongiorno Prof!

</body>
</html>

Online HTML Editor

<html> 
<head><body><center>Thing's I could do in Gymnatics</center></body></head>
<img src = "https://i.pinimg.com/originals/61/36/e0/6136e03417fc755182a0d23983447926.jpg"/>
<img src= "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRrzDHJHgpZ-MK5tL39y_1VMz-oEq_RkSIigCDEtt_3imSjMVEh">
<img src = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSqcDndruxrLOp-OUXOPHT2S0ObQ5D8EM76Dq3e_PYHISs66OFN">
<img src = "https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/FabianHambuechen-WM07.jpg/220px-FabianHambuechen-WM07.jpg">
<img src = "https://media.tenor.com/images/ec9a7d4a9ca40cc797e0eab9de124a9b/tenor.gif">
</html>

GIVT

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

<h1>Testowa strona GIVT Facebook</h1>
<p>Kliknij w ikonÄ™ messengera na dole strony</p>

<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      xfbml            : true,
      version          : 'v3.2'
    });
  };

  (function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<!-- Your customer chat code -->
<div class="fb-customerchat"
  attribution=setup_tool
  page_id="302216033791684"
  theme_color="#fa3c4c">
</div>

</body>
</html>

GIVT

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

<h1>Testowa strona GIVT Facebook</h1>
<p>Kliknij w ikonÄ™ messengera na dole strony</p>

<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      xfbml            : true,
      version          : 'v3.2'
    });
  };

  (function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<!-- Your customer chat code -->
<div class="fb-customerchat"
  attribution=setup_tool
  page_id="302216033791684"
  theme_color="#fa3c4c">
</div>

</body>
</html>

Previous 1 ... 3 4 5 6 7 8 9 ... 732 Next
Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.