-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (48 loc) · 2 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Welcome to Alex Bowman's site!</title>
</head>
<body>
<!--desktop navigation-->
<nav class="menu off hidden-sm hidden-xs">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="portfolio.html">My Portfolio</a></li>
<li><a href="music.html">My Music</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
<a href="#0" class="menu-toggle navicon menu1 hidden-sm hidden-xs">
<span></span>
<span></span>
<span></span>
</a><!--end desktop nav-->
<main>
<h1>Alex Bowman</h1>
<div class="container main">
<img src="img/idothis.jpg" alt="Alex Bowman's face" id="mainimg" class="img-circle">
<p>Hello and welcome to my site!</p>
<p>It's a pretty great site that shows I'm a pretty great guy.</p>
<!--mobile navigation-->
<div class="container mobile hidden-md hidden-lg">
<a href="about.html" class="btn btn-primary" id="leftbutton" role="button">About Me</a>
<a href="music.html" class="btn btn-info" id="rightbutton" role="button">My Music</a>
<a href="portfolio.html" class="btn btn-primary" id="leftbutton" role="button">My Portfolio</a>
<a href="contact.html" class="btn btn-info" id="rightbutton" role="button">Contact Me</a>
</div> <!--end mobile nav-->
</div>
</main>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
<footer>
</footer>
</html>