-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.01 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TechnicProblem</title>
<meta name="description" content="Welcome!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="TechnicProblem">
<link href="normalize.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
</head>
<body>
<header>
<h1>Technic<wbr>Problem</h1>
</header>
<nav>
<a href="about.html">
<button class="margintop button-orange">
About
</button>
</a>
<a href="projects.html">
<button class="button-green">
Projects
</button>
</a>
<a href="contact.html">
<button class="button-blue">
Contact
</button>
</a>
</nav>
<main class="content">
<p id="pageContent">New website! Made with HTML, CSS and coffee.</p>
</main>
<div class="mobilefooter">
<p>© TechnicProblem 2019-2026</p>
</div>
<footer>
<p>© TechnicProblem 2019-2026</p><p class="footer-right">technicproblem.github.io</p>
</footer>
</body>
</html>