-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Thomas Weidling's online portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"
<link rel="stylesheet" type="text/css" href="/portfolio/css/main.css">
</head>
<body>
<div class="container-fluid">
<h1 class="heading">Thomas Weidling's online portfolio</h1>
<div class="col-md-4">
<a href="soften">
<div class="circleText">Software Engineering</div>
<div class="circle"></div>
</a>
</div>
<div class="col-md-4">
<a href="project1">
<div class="circleText">Project 1</div>
<div class="circle"></div>
</a>
</div>
<div class="col-md-4">
<a href="project2">
<div class="circleText">Project 2</div>
<div class="circle"></div>
</a>
</div>
</div>
</div><!-- /.container -->
</body>
</html>