forked from carlos-paezf/50_Projects_50_days
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (46 loc) · 2.06 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
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:site_name" content="50 Projects in 50 Days" />
<meta property="og:title" content="50 Projects in 50 Days" />
<meta property="og:description" content="50 proyectos en 50 con HTML, CSS y JavaScript">
<meta property="og:image"
content="https://raw.githubusercontent.com/carlos-paezf/50_Projects_50_days/main/preview.png">
<meta name="twitter:title" content="50 Projects in 50 Days">
<meta name="twitter:description" content="50 proyectos en 50 con HTML, CSS y JavaScript">
<meta name="twitter:image"
content="https://raw.githubusercontent.com/carlos-paezf/50_Projects_50_days/main/preview.png">
<link rel="icon" href="https://github.com/fluidicon.png" title="GitHub">
<link rel="stylesheet" href="style.css">
<title>50 projects in 50 days</title>
</head>
<body>
<div id="app">
<section class="title">
<h1>50 Projects in 50 days</h1>
<h3>50 programming challenges in HTML, CSS and JS</h3>
<h4>
February & March 2023 - <a href="https://github.com/carlos-paezf" target="_blank"
rel="noopener noreferrer">@carlos-paezf</a>
</h4>
</section>
<span class="separate"></span>
<section class="projects">
<table>
<thead>
<tr>
<td class="first"> </td>
<td class="second">Project</td>
<td class="third">Live Demo</td>
</tr>
</thead>
<tbody id="tbody"></tbody>
</table>
</section>
</div>
<script type="module" src="script.js"></script>
</body>
</html>