-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.64 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
<html>
<head>
<meta charset="UTF-8">
<title>Code2Slide</title>
<meta name="description" content="">
<meta name="keywords" content="codigo, slide, programção">
<meta name="author" content="Luis Araujo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<!-- and it's easy to individually load additional languages -->
<link href="css/style_template.css" rel="stylesheet" />
</style>
</head>
<body>
<header class="bg-white">
<nav class="mx-auto flex max-w-7xl items-center justify-between p-6 lg:px-8" aria-label="Global">
</nav>
</header>
<div class="flex flex-col items-center h-screen">
<img src="images/logo2.png" alt="Logo" class="w-48 h-48 mb-4">
<h1 class="text-center text-2xl font-semibold text-gray-800">
easily transform your code into slides!
</h1>
<h3 class="text-center text-1xl text-gray-400">
no login, no code, no cost
</h3>
<div class="flex space-x-4 mt-6">
<button id="btn-create" class="bg-white-500 border hover:bg-black hover:text-white text-gray-800 font-bold py-2 px-4 rounded">
Create
</button>
<button id="btn-doc" class="bg-white-500 border hover:bg-black hover:text-white text-gray-800 font-bold py-2 px-4 rounded">
Doc
</button>
</div>
</div>
<script src="mainHome.js"></script>
</body>
</html>