-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (43 loc) · 1.67 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Ejemplo HTML</title>
<meta name="description" content="" />
<meta name="author" content="Ivan Mejia" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link href="stylesheets/screen.css" rel="stylesheet" type="text/css">
</head>
<body>
<div>
<header>
<h1>HTML</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Clients</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<div>
<h2>Titulo subseccion</h2>
<p>un texto de prueba dentro del documento</p>
<h2>Titulo subseccion 2</h2>
<p>Credibly grow enabled results without value-added solutions. Enthusiastically grow just in time schemas vis-a-vis economically sound technologies. Dynamically grow impactful manufactured products via effective total linkage. Monotonectally implement standards compliant products.</p>
</div>
<footer>
<p>
Example by @koffer
</p>
</footer>
</div>
</body>
</html>