-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
74 lines (56 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<!--
This is blog Created by ANASS BOUTAKAOUA
URI : https://github.com/soyamore/
EMAIL : anassboutakaoua@gmail.com
-->
<title>Anass Btk - Portfolio</title>
<meta charset="utf8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<header>
<!-- NAVBAR -->
<nav>
<a href="">Anass Prod</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#skills">Skills</a></li>
<li><a href="portfolio.html" class="active">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<div id="portfolio">
<h1>Portfolio</h1>
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="thumbnail">
<img src="img/php.png" alt="...">
<div class="caption">
<h3>PHP</h3>
<p>Write here some text...</p>
</div>
</div>
</div>
</div>
</div>
<div id="contact-link">
<h5>Question,Need, Project do not hesitate to</h5>
<a href="" class="btn btn-primary">Contact Me !!</a>
</div>
</section>
<footer>
<div id="info">
<div>Developed by <a href="">Anass BOUTAKAOUA</a></div>
<p>Copyright © 2016</p>
</div>
</footer>
</body>
</html>