-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
123 lines (104 loc) · 3.81 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Meta Tags -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content=""/>
<title>Name</title>
<!-- Mobile Specifics -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="HandheldFriendly" content="true"/>
<meta name="MobileOptimized" content="320"/>
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Main Style -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- Responsive -->
<link href="assets/css/responsive.css" rel="stylesheet">
<!-- Google Font -->
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&subset=latin,latin-ext,cyrillic' rel='stylesheet' type='text/css'>
<!-- Fav Icon -->
<link rel="shortcut icon" href="#">
<link rel="apple-touch-icon" href="#">
<link rel="apple-touch-icon" sizes="114x114" href="#">
<link rel="apple-touch-icon" sizes="72x72" href="#">
<link rel="apple-touch-icon" sizes="144x144" href="#">
<!-- Modernizr -->
<script src="assets/js/modernizr.js"></script>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="span2">
<div id="logo">
<a href="index.html" title="NAME">NAME</a>
</div>
</div>
<div class="span10">
<nav id="menu">
<ul id="menu-nav">
<li><a href="about.html">about</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- End Header -->
<!-- Start Intro Box -->
<section id="intro-box" class="margin-0">
<div class="container">
<div class="row">
<div class="span12">
<h3 class="center">Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius and a lot of courage to move in the opposite direction.</h3>
</div>
</div>
</div>
</section>
<!-- End Intro Box -->
<!-- Start Section Portfolio Projects -->
<section id="portfolio" class="container">
<div class="row">
<div id="portfolio-projects">
<ul id="projects">
<li class="item-project span12">
<a href="work.html" title="Work1"><img src="assets/img/home1.jpg" alt=""></a>
</li>
<li class="item-project span6">
<a href="work.html" title="Work2"><img src="assets/img/home2.jpg" alt=""></a>
</li>
<li class="item-project span6">
<a href="work.html" title="Work3"><img src="assets/img/home4.jpg" alt=""></a>
</li>
<li class="item-project span12">
<a href="work.html" title="Work4"><img src="assets/img/home3.jpg" alt=""></a>
</li>
</ul>
</div>
</div>
</section>
<!-- End Section Portfolio Projects -->
<!-- Start Footer -->
<footer class="footer-widgets">
<div class="container">
<div class="row">
<div class="span4 widget">
<div class="about-widget">
<h7>[email protected]</h7>
</div>
</div>
<div class="span8 widget">
<div class="twitter-widget">
<h7><a href="#" target="_blank">facebook</a> • <a href="#" target="_blank">instagram</a> • <a href="#" target="_blank">linkedin</a> • <a href="#" target="_blank">github</a>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
</body>
</html>