html website code example
Example 1: html deutsch
Html ist eine Programmiersprache bzw; eine Source für die Web Entwicklung.
Meistenz wird das Design einer Website mit CSS gemacht, einer Programmiersprache für das aussehen!
Html = Hypertext-Auszeichnungssprache
Anleitung von FreshVlay
Example 2: website
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
Example 3: html site
<center>
<h1>The a tag</h1>
</center>
<a href="https://arnav.tcode.in">Visit Acode(Learn HTML{For free[Easy]})</a>
<p>Note: this will not work on files if you are on a external website</p>
Example 4: html
<!DOCTYPE html>
<html lang="en">
<head>
<!--Meta Info-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Website</title>
<!-- Website Icon -->
<link rel="icon" href="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" type="x_icon">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- import the webpage's javascript file -->
<script src="script.js" defer></script>
</head>
<body>
</body>
</html>