-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
53 lines (50 loc) · 2 KB
/
todo.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mael is fun</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link rel="stylesheet" href="todo.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<div class="all">
<div class="header">
<a href="index.html"><img class="logo" src="img/cookie-monster-gif-1.gif"></a>
<ul>
<!-- <li class="head_button"><a href="index.html"> home </a> -->
<li class="head_button"><a href="contacts.html">contact_me</a>
</ul>
</div>
<div class="container">
<h1>Maem's</h1>
<p class="subtitle">ToDo list 👀</p>
<a class="categories"> Web</a>
<a class="item" href="https://maelbuchs.github.io/figma-clone/" target="_blank">
<d class="item_title">Make static websites</d>
<p> Click here to see an example</p>
<p>🖥️</p>
</a>
<a class="item" target="_blank">
<p class="item_title">Make interactives websites</p>
<p> Work in progress</p>
<p>🔁</p>
</a>
<a class="categories"> Cybersec</a>
<a class="item" href="https://github.com/maelBuchs/cyber_vm" target="_blank">
<p class="item_title">Build my own workstation for cyber</p>
<p> Work in progress</p>
<p>🔁</p>
</a>
<a class="categories"> Personal Projects</a>
<a class="item" target="_blank">
<p class="item_title"> Make a raytracing engine</p>
<p> Not yet </p>
<p>❌</p>
</a>
</div>
</body>
</html>
<!DOCTYPE html>