-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
32 lines (28 loc) · 1.13 KB
/
intro.html
File metadata and controls
32 lines (28 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Jorge Andre Sabella</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CDN -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- My own Style sheet css file -->
<link rel="stylesheet" type="text/css" href="intro.css">
</head>
<div class="container">
<div id="content">
<h1>Jorge Andres Sabella</h1>
<p>Software Engineer</p>
<nav>
<ul class="nav nav-pills">
<li role="presentation"><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li role="presentation"><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li role="presentation"><a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li role="presentation"><a href="#"><i class="fa fa-github rounded" aria-hidden="true"></i></a></li>
</ul>
</nav>
</div>
</div>
</body>
</html>