-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Programming Languages</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="img/icon.png" type="image/x-icon" />
</head>
<body>
<div id="wrap">
<header>
<h1>💻 Programming Languages</h1>
</header>
<nav>
<ul id="nav">
<li><a href="#"><img src="img/python.gif" alt="Python"> Python</a></li>
<li><a href="#"><img src="img/javascript.gif" alt="JavaScript"> JavaScript</a></li>
<li><a href="#"><img src="img/java.gif" alt="Java"> Java</a></li>
<li><a href="#"><img src="img/csharp.png" alt="C#"> C#</a></li>
<li><a href="#"><img src="img/php.png" alt="PHP"> PHP</a></li>
<li><a href="#"><img src="img/ruby.png" alt="Ruby"> Ruby</a></li>
</ul>
</nav>
<main id="contenido">
<p>
A programming language is a formal language comprising a set of instructions that produce various kinds of output.
Popular languages include Python, JavaScript, Java, and many more, each with their own use cases and communities.
</p>
</main>
</div>
</body>
</html>