-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
66 lines (53 loc) · 1.62 KB
/
Copy pathportfolio.html
File metadata and controls
66 lines (53 loc) · 1.62 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<style>
.col-sm-6:hover {
box-shadow: 2px 2px 20px grey;
color:black;
}
.col-sm-6 p{
display:none;
}
.col-sm-6:hover p{
display:block;
}
.col-sm-6 {
margin-bottom: 5%;
}
h3 {
text-align: center;
}
img {
margin: 1%;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav-center nav navbar-nav">
<li>
<a href="portfolio.html">portfolio</a>
</li>
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about.html">about</a>
</li>
</ul>
</div>
</nav>
</body>
</html>