-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
82 lines (62 loc) · 2.29 KB
/
portfolio.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<head>
<title>Learning bootstrap</title>
<meta charset="utf-8" />
<!-- Adding the bootstrap library-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="portfolio.css" />
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Jquery scripts -->
<script>
$(document).ready(function(){
$(".portfolio-col").addClass("thumbnail");
});
</script>
</head>
<body>
<div class="container-fluid" style="background-color: #bfccb1">
<!-- Head of the page -->
<h1>Portfolio Page</h1>
<!-- We will have a button for navigation -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<button type="button" name="button">Testing this button</button>
</div>
</nav>
<div id="about-div" class="jumbotron">
<div class="row" >
<div class="col-lg-8">
<h2>Self taught computer science student, working on robotics, artificial intellingence and sofware development</h2>
<!-- Put this as a seperator -->
</div>
<div class="col-lg-4">
<!-- This is where my image will be -->
<img src="my-picture.jpg" alt="My own Picture" id="my-image" class="img-circle">
</div>
</div>
</div>
<div id="portfolio-div">
<!--This is the portfolio section -->
<h2 class="text-center" id="portfolio-text"> Porfolio</h2>
<!--Put a few blocks with stuff i've done with links to the code -->
<div class="row">
<div class="col-sm-4">
<a href="http://www.itandroids.com.br/" target="_blank"><img id="itandroids-logo" src="http://www.itandroids.com.br/media/images/itandroids_logo.png" alt="ITAndrodis image" ></a>
<h4 class="text-center">ITAndroids Website</h4>
</div>
<div class="col-sm-4">
<h1><a href="https://github.com/fcomuniz/cs50" target="_blank">CS50 Repository</a></h1>
</div>
<div class="col-sm-4">
</div>
</div>
</div>
<div id="contact-div">
<h1>testing this</h1>
</div>
</div>
</body>