-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 813 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML Guide</title>
<style media="screen and (min-width:800px)">
body{
background-color: green;
}
</style>
</head>
<body>
<h1>Base structure</h1>
<dl>
<dt>HTML</dt>
<dd>Elemento raiz del documento</dd>
<dt>Head</dt>
<dd>Informacion sobre el documento. Qué es para qué es</dd>
<dt>Body</dt>
<dd>Todo lo que renderiza el motor del navegador</dd>
</dl>
<h2>Elementos Del Head/ Metadatos</h2>
<ul>
<li>Title</li>
<li>Meta</li>
<li>Styles</li>
<li>Scripts</li>
</ul>
<a href="whatsapp:tel//+573013278050">+573013278050</a>
</body>
</html>