-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 2.21 KB
/
index.html
File metadata and controls
71 lines (64 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/main.css">
<title>DevBlook | Home</title>
</head>
<body>
<header>
<div class="white-card">
<nav class="nav-menu">
<div class="logo-container">
<img class="logo" src="./assets/DevBlook_with_background.svg" alt="" width="48px" height="48px">
<h1>DevBlook</h1>
</div>
<ul class="nav-options">
<li><a href="index.html">Home</a></li>
<li><a href="./html/projects.html">Projects</a></li>
<li><a href="./html/members.html">Members</a></li>
<li><a href="./html/about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<section class="center-section">
<div class="cage-text">
<h1>DevBlook Team</h1>
<p>Presentation page of the DevBlook team. Here you will find our projects and personal projects of the team
members.</p>
</div>
<div class="cage-text">
<h1>Community Server</h1>
<p>Follow us in our discord server.</p>
</div>
</section>
<footer>
<div class="white-card">
<nav class="nav-menu">
<div class="logo-container">
<h1>DevBlook</h1>
</div>
<div class="topics">
<div class="topic-container">
<ul>
<li><a href="https://github.com/devblook" target="_blank">Github</a></li>
<li><a href="https://discord.gg/AdmTXQD8FM" target="_blank">Discord</a></li>
</ul>
</div>
<div class="topic-container">
<ul>
<li><a href="#" target="_blank">Email</a></li>
<li><a href="#" target="_blank">Contact</a></li>
</ul>
</div>
</div>
</nav>
</div>
<p>Derechos reservados @ DevBlook Team</p>
</footer>
</body>
</html>