-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Web Dev Studies</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
<!-- #TODO Theme Switching -->
<meta charset="UTF-8"/>
<meta name="description" content="Web Dev Studies"/>
<meta name="keywords" content="HTML, CSS, Web Development, Mattia, Formichetti, Open, Source, Free, Software"/>
<meta name="author" content="Mattia Formichetti"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
</head>
<body>
<header>
<h1>Web Dev Studies</h1>
<h2>Made by Mattia Formichetti</h2>
</header>
<nav>
<ul>
<li><a href="about_me/about_me.html">About Me</a></li>
<li><a href="index.html" class="selected">Projects</a></li>
<li><a href="open_source.html">Open Source</a></li>
</ul>
</nav>
<article>
<h1>These Are My Projects</h1>
<div class="grid">
<a href="projects/bootstrap_demo_1/index.html" class="website">
<img src="projects_img/bootstrap_demo_1.png"></img>
<h3>Bootstrap Demo 1</h3>
</a>
<a href="projects/javascript_shopping_list/index.html" class="website">
<img src="projects_img/javascript_shopping_list.png"></img>
<h3>Javascript Shopping List</h3>
</a>
</div>
</article>
<footer>
<h5>Made With Love</h5>
</footer>
</body>
</html>