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

Online HTML Editor

<html>
  <font size=6> All about me</font>
<p>By:Brenden Taylor 
<p>I am a fairly well rounded student. i get my work done on time i makes feiends all the time. i gett good greades i also pay attention in class.</p>
<p> schedule of my classes</p>
<Ul>
    <li> Math</li>
    <li>Social studies</li>
    <li>Science</li>
    <li>P.E</li>
    <li>computer</li>
    <li>foods</li>
    <li>Language art's</li>
    </Ul>
    
    
</html>

Online HTML Editor

<!DOCTYPE html>
<html>
<body>
<h1>Sports I've Played</h1> 
<h2>Volleyball</h2>
<p>I have been playing volleyball since 2nd grade and had so much fun playing with my friends that I have continued to do it ever since. I was on a rec volleyball team with kids from my school from 3rd grade up until 6th grade. In 6th grade I had finally decided that I wanted to take volleyball more seriously and try out for a club team. During my rec seasons we were constantly winning and there was really no challenge. I was interested in improving my skills and the only way to do that was with a diiferent coach on a club team. SKC was the club I decided on trying out for and I made the top team for that club. I have continued playing for them for the past 2 years now and have improved in many skills.</p>
<h2>Basketball</h2>
<p></p>
<h2>Softball</h2>
<p></p>
<body bgcolor=tan>
<body text=white>
</body>
</html>

Online HTML Editor

<html>
<head>
<title>little big planet!</title>
<style>
body
{
background: -webkit-radial-gradient(blue,lightblue);
}
#container
{
width:1200px;
height:900px;
background-color:transparent;
margin-left:auto;
margin-right:auto;
}

#topbar
{
height:50px;
background-color:green
}

#topcontent
{
height:250px;
background-color:transparent;
text-align:center
}

#bannercontent
{
height:400px;
background-color:transparent
}

#navbar
{
height:100px;
background-color:transparent;

}

#navbar ul
{
list-style-type:none
}

#navbar ul li
{
    display: inline-block;
    width: 120px;
    text-align: center;
}

#navbar ul li a
{
    background-color:#009999;
    display:block;
    width:120px;
    height:100px;
	margin:1px;
    color:white;
    border-radius:15px;
    font-size:19px;
    font-family: 'verdana';
    font-weight: bold;
    text-decoration: none;
	position: relative;
	left:-25px;
	bottom:30px

}

#navbar ul li a:hover
{
    background-color:yellow;
	color:black;
}

#footer
{
height:100px;
background-color:gray
}

#bannerleft
{
height:400px;
width:250px;
background-color:transparent;
float:left
}

#bannermiddle
{
height:400px;
width:700px;
background-color:transparent;
float:left
}

#bannerright
{
height:400px;
width:250px;
background-color:transparent;
float:left
}

#navbarleft
{
height:100px;
width:250px;
background-color:transparent;
float:left
}

#navbarmiddle
{
height:100px;
width:700px;
background-color:transparent;
float:left
}

#navbarright
{
height:100px;
width:250px;
background-color:transparent;
float:left
}

#imagepic
{
position:relative;
z-index:2;
border:9px solid white
}
</style>

</head>

<body>
</body>
<div id="container">
<div id="topbar">  </div>
<div id="topcontent"><img src="contentimagenav.png"></div>



<div id="bannercontent"> 

<div id="bannerleft"></div>
<div id="bannermiddle"><img id="imagepic" src="littlebigplanet-3.jpg"></div>
<div id="bannerright"></div>

</div>


<div id="navbar">
	<div id="navbarleft"></div>
	<div id="navbarmiddle">
<ul>
<li><a href="#"><br>The Journey Home</a></li>
<li><a href="#"><br>Order LBP3 Today</a></li>
<li><a href="#"><br>Learn <br>More About Us</a></li>
<li><a href="#"><br>Our YouTube Channel</a></li>
<li style="position:relative;left:48px"><a href="#"><br>Recent Little Big News</a></li>
</ul>
</div>
<div id="navbarright"></div>

</div>

<div id="footer"> </div>
</div>
</html>

Online HTML Editor

<html>
   <head>
      <title>Angular JS Filters</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
      </script>
      <style>
         table, th , td {
            border: 1px solid grey;
            border-collapse: collapse;
            padding: 5px;
         }
         table tr:nth-child(odd) {
            background-color: #f2f2f2;
         }
         table tr:nth-child(even) {
            background-color: #ffffff;
         }
      </style>
   </head>
   
   <body>
      <h2>AngularJS Sample Application</h2>
      
      <div ng-app = "mainApp" ng-controller = "studentController">
          
        <form name = "studentForm" novalidate>   
         <table border = "0">
               <tr>
                  <td>Enter first name:</td>
                  <td><input name = "firstname" type = "text" ng-model = "firstName" required>
                     <span style = "color:red" ng-show = "studentForm.firstname.$dirty && studentForm.firstname.$invalid">
                        <span ng-show = "studentForm.firstname.$error.required">First Name is required.</span>
                     </span>
                  </td>
               </tr>
               
               <tr>
                  <td>Enter last name: </td>
                  <td><input name = "lastname"  type = "text" ng-model = "lastName" required>
                     <span style = "color:red" ng-show = "studentForm.lastname.$dirty && studentForm.lastname.$invalid">
                        <span ng-show = "studentForm.lastname.$error.required">Last Name is required.</span>
                     </span>
                  </td>
               </tr>
               
               <tr>
                  <td>Email: </td><td><input name = "email" type = "email" ng-model = "email" length = "100" required>
                     <span style = "color:red" ng-show = "studentForm.email.$dirty && studentForm.email.$invalid">
                        <span ng-show = "studentForm.email.$error.required">Email is required.</span>
                        <span ng-show = "studentForm.email.$error.email">Invalid email address.</span>
                     </span>
                  </td>
               </tr>
               
               <tr>
                  <td>
                     <button ng-click = "reset()">Reset</button>
                  </td>
                  <td>
                     <button ng-disabled = "studentForm.firstname.$dirty &&
                        studentForm.firstname.$invalid || studentForm.lastname.$dirty &&
                        studentForm.lastname.$invalid || studentForm.email.$dirty &&
                        studentForm.email.$invalid" ng-click="submit()">Submit</button>
                  </td>
               </tr>
					
            </table>
         </form>   
         
         <br/>
         
         <br/>
         
         <table border = "0">
            
            <tr>
               <td>fees: </td><td>{{student.fees | currency}}
               </td>
            </tr>
            <tr>
               <td>Subject:</td>
              <!-- <td>
                  <ul>
                     <li ng-repeat = "subject in student.subjects | filter: subjectName |orderBy:'marks'">
                        {{ subject.name + ', marks:' + subject.marks }}
                     </li>
                  </ul>
               </td>-->
                <td>
                  <table>
                     <tr>
                        <th>Name</th>.
                        <th>Marks</th>
                     </tr>
                     <tr ng-repeat = "subject in student.subjects">
                        <td>{{ subject.name }}</td>
                        <td>{{ subject.marks }}</td>
                     </tr>
                  </table>
               </td>
            </tr>
         </table>
         <br/><br/>
         
         <!-- ng-disabled , ng-show ,ng-hide , ng-click directives  examples-->
         <table border = "0">
            <tr>
               <td><input type = "checkbox" ng-model = "enableDisableButton">Disable Button</td>
               <td><button ng-disabled = "enableDisableButton">Click Me!</button></td>
            </tr>
            <tr>
               <td><input type = "checkbox" ng-model = "showHide1">Show Button</td>
               <td><button ng-show = "showHide1">Click Me!</button></td>
            </tr>
            <tr>
               <td><input type = "checkbox" ng-model = "showHide2">Hide Button</td>
               <td><button ng-hide = "showHide2">Click Me!</button></td>
            </tr>
            <tr>
               <td><p>Total click: {{ clickCounter }}</p></td>
               <td><button ng-click = "clickCounter = clickCounter + 1">Click Me!</button></td>
            </tr>
         </table>
         
         
         
         
         
      </div>
      
      <script>
        
         var mainApp = angular.module("mainApp", []);
         
         mainApp.controller('studentController', function($scope) {
            $scope.student = {
               firstName: "Mahesh",
               lastName: "Parashar",
               fees:500,
               
               subjects:[
                  {name:'Physics',marks:70},
                  {name:'Chemistry',marks:80},
                  {name:'Math',marks:65}
               ],
               fullName: function() {
                  var studentObject;
                  studentObject = $scope.student;
                  return studentObject.firstName + " " + studentObject.lastName;
               }
            };
            
             $scope.reset = function() {
               $scope.firstName = "";
               $scope.lastName = "";
               $scope.email = "";
            }
            
            $scope.reset();
            
         });
      </script>
      
   </body>
</html>

XMAN


<style>
table {
    width: 100%;
}
table, th, td {
    border-bottom: 1px solid #DCDCDC;
    border-collapse: collapse;
}
tr:hover {
    background-color: #DCDCDC;
}
th, td {
    padding: 10px;
}
th {
    text-align: left;
}
</style>


<h1>Basic HTML Table</h1>
<table>
  <thead>
    <tr>
      <th scope="column">Firstname</th>
      <th scope="column">Lastname</th>
      <th scope="column">Age</th>
    </tr>
    <tr>
      <td>Jill</td>
      <td>Smith</td>
      <td>50</td>
    </tr>
    <tr>
      <td>Eve</td>
      <td>Jackson</td>
      <td>93</td>
    </tr>
    <tr>
      <td>John</td>
      <td>Doe</td>
      <td>80</td>
    </tr>
  </thead>
</table>

I am staying

<!DOCTYPE html>
<html>

   <head>
      <title>HTML marquee Tag</title>
   </head>

   <body style="color:#03F200; background:#000;">
      <marquee scrollamount='30'><pre style="color:#03F200; background:#000;">        
 8 8888 
 8 8888 
 8 8888 
 8 8888 
 8 8888 
 8 8888 
 8 8888 
 8 8888 
 8 8888 
 8 8888 


</pre></marquee>
<marquee scrollamount='30'><pre style="color:#03F200; background:#000;">
    <pre style="color:#03F200; background:#000;">                                .         .           
         .8.                   ,8.       ,8.          
        .888.                 ,888.     ,888.         
       :88888.               .`8888.   .`8888.        
      . `88888.             ,8.`8888. ,8.`8888.       
     .8. `88888.           ,8'8.`8888,8^8.`8888.      
    .8`8. `88888.         ,8' `8.`8888' `8.`8888.     
   .8' `8. `88888.       ,8'   `8.`88'   `8.`8888.    
  .8'   `8. `88888.     ,8'     `8.`'     `8.`8888.   
 .888888888. `88888.   ,8'       `8        `8.`8888.  
.8'       `8. `88888. ,8'         `         `8.`8888. 


</pre>
</marquee>
<marquee scrollamount='30'><pre style="color:#03F200; background:#000;">
    <pre style="color:#03F200; background:#000;">                                                                                                      
   d888888o. 8888888 8888888888   .8.   `8.`8888.      ,8'  8 8888 b.             8     ,o888888o.    
 .`8888:' `88.     8 8888        .888.   `8.`8888.    ,8'   8 8888 888o.          8    8888     `88.  
 8.`8888.   Y8     8 8888       :88888.   `8.`8888.  ,8'    8 8888 Y88888o.       8 ,8 8888       `8. 
 `8.`8888.         8 8888      . `88888.   `8.`8888.,8'     8 8888 .`Y888888o.    8 88 8888           
  `8.`8888.        8 8888     .8. `88888.   `8.`88888'      8 8888 8o. `Y888888o. 8 88 8888           
   `8.`8888.       8 8888    .8`8. `88888.   `8. 8888       8 8888 8`Y8o. `Y88888o8 88 8888           
    `8.`8888.      8 8888   .8' `8. `88888.   `8 8888       8 8888 8   `Y8o. `Y8888 88 8888   8888888 
8b   `8.`8888.     8 8888  .8'   `8. `88888.   8 8888       8 8888 8      `Y8o. `Y8 `8 8888       .8' 
`8b.  ;8.`8888     8 8888 .888888888. `88888.  8 8888       8 8888 8         `Y8o.`    8888     ,88'  
 `Y8888P ,88P'     8 8888.8'       `8. `88888. 8 8888       8 8888 8            `Yo     `8888888P'    


</pre>
</marquee>
   </body>

</html>

html

<html>
<head>


</head>
  <body bgcolor="lightblue">

<input type="reset"name="label">
<form method="post"action="comment.html">
    input your comments:<br/><textarea name="comments"rows="20"cols="60">
        ....your comments iere....
        
    </textarea>
</form>
<select>
<option value="ahmedabad">ahmedabad</option>
<option value="rajkot">rajkot</option>
<option value="surat">surat</option>
</select>
<tr>
    <td width="12%">Fist Name</td>
    <td width="1%">&nbsp;</td>
    <td><input type="textbox"name="textFirstName"></td>
</tr>
<tr>
    <td>middle name</td>
    <td>&nbsp</td>
    <td><input type="text box"name="txtmiddlename"</td>    
    
</tr>
  </body>  
    
    
</html>

circle

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<style type="text/css">

#circleBottom {
    width: 50rem;
    height: 50rem;
    background-image: linear-gradient(120deg, green, blue);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: -15%;
    bottom: -15%;
}
</style>
</head>
<body>
    
    
<div id='circleBottom'>Hello, World!</div>
</body>
</html>

Online HTML Editor

<head>
    <script>
        function login(email, password){
            if(email ==="[email protected]" && password ==="login"){
                alert("you logged in.");
            }else {
                alert("wrong information")
            }
        }
    </script>
</head>
<center>
<form action="javascript:login(email.value, password.value)"> 
<input name="email" placeholder="email">
<br/>
<p></p>
<input name="password" type="password" placeholder="password"/>
<br/>
<p></p>
<input type="submit" value="submit">
</form>
</center>

Online HTML Editor

<!DOCTYPE html>
<html>
    <head>  
         <style>
         .center {
         display: block;
         margin-left: auto;
         margin-right: auto;
         width: 50%;
         }
        </style>
     </head>
        <body>
            <h1><font color=grey><center>World of Josh</center></font></h1>
            <img src="https://www.gstatic.com/earth/social/00_generic_facebook-001.jpg" alt=World style="width:640px;height:640px;" class="center">
        <center><h3 style="background-color:rgb(176, 196, 222);">Hi welcome to my website! If you haven't noticed yet my name is Josh and I am currently in 8th grade at Chisholm Trail Middle School. This was an assignment given to us in Computer class and I doing my best not to completely fail. Anyway here you can find out what my life, or world is like.</h3></center> 
        <div>
        <body bgcolor=black>
        </div>
       </body>
</html>

Previous 1 ... 5 6 7 8 9 10 11 ... 732 Next
Advertisements
Loading...

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