This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<-- Snippet to make a html table in a webpage --> | |
<table> | |
<thead> | |
<tr> | |
<th>heading 1 </th> | |
<th>heading 2</th> | |
<th>heading 3</th> | |
</tr> | |
</thead> | |
<tbody> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tag Description | |
<!--...--> Defines a comment | |
<!DOCTYPE> Defines the document type | |
<a> Defines a hyperlink | |
<abbr> Defines an abbreviation or an acronym | |
<acronym> Not supported in HTML5. Use <abbr> instead. | |
Defines an acronym | |
<address> Defines contact information for the author/owner of a document | |
<applet> Not supported in HTML5. Use <embed> or <object> instead. | |
Defines an embedded applet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
video { | |
width: 100%; | |
height: auto; | |
} | |
h1 { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body::-webkit-scrollbar { | |
width: 12px; /* width of the entire scrollbar */ | |
} | |
body::-webkit-scrollbar-track { | |
background: linear-gradient(rgb(10, 10, 10),rgb(7, 7, 3),rgb(5, 10, 4)); /* color of the tracking area */ | |
} | |
body::-webkit-scrollbar-thumb { | |
background-color: rgb(225, 248, 143); /* color of the scroll thumb */ | |
border-radius: 20px; /* roundness of the scroll thumb */ | |
border: 3px solid rgb(71, 70, 66); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 | Continue | The client request has been accepted | |
101 | Switching | Protocols The client has requested for switching the protocols and it is acknowledged. | |
200 | OK | Server successfully processed request. | |
201 | Created | Server successfully processed a request and created a new resource. | |
202 | Accepted | Processing request accepted but not completed yet. | |
203 | Non-Authoritative Information | Processed request and returning information from other sources. | |
204 | No content | Server processed request but there is no content to return to the client. | |
205 | Reset Content | When no content is returned but the request is successful, then the code signifies need to change document view. |
OlderNewer