<!DOCTYPE html>
<html>
Graphics Card Name	NVIDIA GeForce RTX 3050	NVIDIA GeForce RTX 3050 Ti	NVIDIA GeForce RTX 3060	NVIDIA GeForce RTX 3060 Ti	NVIDIA GeForce RTX 3070	NVIDIA GeForce RTX 3070 Ti?	NVIDIA GeForce RTX 3080	NVIDIA GeForce RTX 3080 Ti?	NVIDIA GeForce RTX 3090
GPU Name	Ampere GA107	Ampere GA106?	Ampere GA106?	Ampere GA104-200	Ampere GA104-300	Ampere GA102-150	Ampere GA102-200	Ampere GA102-250	Ampere GA102-300
Process Node	Samsung 8nm	Samsung 8nm	Samsung 8nm	Samsung 8nm	Samsung 8nm	Samsung 8nm	Samsung 8nm	Samsung 8nm	Samsung 8nm
Die Size	TBA	TBA	TBA	395.2mm2	395.2mm2	628.4mm2	628.4mm2	628.4mm2	628.4mm2
Transistors	TBA	TBA	TBA	17.4 Billion	17.4 Billion	28 Billion	28 Billion	28 Billion	28 Billion
CUDA Cores	2304	3584	3840	4864	5888	7424	8704	10496	10496
TMUs / ROPs	TBA	TBA	TBA	152 / 80	184 / 96	232 / 80	272 / 96	328 / 112	328 / 112
Tensor / RT Cores	TBA	TBA	TBA	152 / 38	184 / 46	232 / 58	272 / 68	328 / 82	328 / 82
Base Clock	TBA	TBA	TBA	1410 MHz	1500 MHz	TBA	1440 MHz	TBA	1400 MHz
Boost Clock	TBA	TBA	TBA	1665 MHz	1730 MHz	TBA	1710 MHz	TBA	1700 MHz
FP32 Compute	TBA	TBA	TBA	16.2 TFLOPs	20 TFLOPs	TBA	30 TFLOPs	TBA	36 TFLOPs
RT TFLOPs	TBA	TBA	TBA	32.4 TFLOPs	40 TFLOPs	TBA	58 TFLOPs	TBA	69 TFLOPs
Tensor-TOPs	TBA	TBA	TBA	TBA	163 TOPs	TBA	238 TOPs	TBA	285 TOPs
Memory Capacity	4 GB GDDR6?	6 GB GDDR6?	6 GB GDDR6?	8 GB GDDR6	8 GB GDDR6	10 GB GDDR6X?	10 GB GDDR6X	20 GB GDDR6X	24 GB GDDR6X
Memory Bus	128-bit	192-bit?	192-bit?	256-bit	256-bit	320-bit	320-bit	320-bit	384-bit
Memory Speed	TBA	TBA	TBA	14 Gbps	14 Gbps	TBA	19 Gbps	19 Gbps	19.5 Gbps
Bandwidth	TBA	TBA	TBA	448 Gbps	448 Gbps	TBA	760 Gbps	760 Gbps	936 Gbps
TGP	90W?	TBA	TBA	180W?	220W	320W?	320W	320W	350W
Price (MSRP / FE)	$149?	$199?	$299?	$399 US?	$499 US	$599 US?	$699 US	$899 US?	$1499 US
Launch (Availability)	2021?	2021?	2021?	November 2020?	29th October	Q4 2020?	17th September	January 2021?	24th September
</html> 

HTML Online Editor & Compiler

Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML. You can also specify the stylesheet information in styles.css tab and scripts information in scripts.js tab and start coding.

About HTML

HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.

Syntax help

Fundamentals

  • Any HTML document must start with document declaration <!DOCTYPE html>
  • HTML documents begin with <html> and ends with </html>
  • Headings are defined with <h1> to <h6> where <h1> is the highest important heading and <h6> is the least important sub-heading.
  • Paragrahs are defined in <p>..</p> tag.
  • Links are defined in <a> tag.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    
  • Images are defined in <img> tag, where src attribute consists of image name.
  • Buttons are defined in <button>..</button> tag
  • Lists are defined in <ul> for unordered/bullet list and <ol> for ordered/number list, and the list items are defined in <li>.

HTML Elements and Attributes

  • HTML element is everything present from start tag to end tag.
  • The text present between start and end tag is called HTML element content.
  • Anything can be a tagname but it's preferred to put the meaningful title to the content present as tag name.
  • Do not forget the end tag.
  • Elements with no content are called empty elements.
  • Elements can have attributes which provides additional information about the element.
  • In the below example, href is an attribute and a is the tag name.

    Example:

    <a href="https://onecompiler.com/html">HTML online compiler</a>
    

CSS

CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.

Example:

Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.

body{
  padding: 25px;
}
.title {
	color: #228B22;
	font-family: Candara;
}

HTML Tables

  • HTML Tables are defined in <table> tag.
  • Table row should be defined in <tr> tag
  • Table header should be defined in <th> tag
  • Table data should be defined in <td> tag
  • Table caption should be defined in <caption> tag

HTML-Javascript

  • Javascript is used in HTML pages to make them more interactive.
  • <script> is the tag used to write scripts in HTML
  • You can either reference a external script or write script code in this tag.

Example

<script src="script.js"></script>