-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·48 lines (47 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>learn HTML | CSS | Markdown</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<h1>Learn HTML | CSS | Markdown</h1>
<div id="container">
<div class="box">
<h3>Tim-Berners-Lee</h3>
<a href="./Tim-Berners-Lee/index.html"><button>webpage reproduction</button></a>
</div>
<div class="box">
<h3>Personnal VCard</h3>
<a href="./VCard/index.html"><button>vcard page</button></a>
</div>
<div class="box">
<h3>Star-Wars crawl</h3>
<a href="./StarWars-crawl/index.html"><button>star-wars crawl</button></a>
</div>
<div class="box">
<h3>CV</h3>
<a href="./CV/index.html"><button>cv page</button></a>
</div>
<div class="box">
<h3>404 error page</h3>
<a href="./404-page/index.html"><button>404 page</button></a>
</div>
<div class="box">
<h3>Git basic commands</h3>
<a href="./git-basic-commands/index.html"><button>git commands page</button></a>
</div>
<div class="box">
<h3>Markdown discover</h3>
<a href="https://github.com/Amondt/learn-HTML-CSS-MD/tree/master/markdown-discover"><button>about me</button></a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>