-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NSBE Webinar - CSS</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<!-- I added #42a5f5 blue lighten-1 to change the navbar color-->
<div class="nav-wrapper #42a5f5 blue lighten-1">
<!-- Note I added navText as a custom CSS to move the text over -->
<a href="#" class="brand-logo navText">Milo</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="http://facebook.com">FaceBook</a></li>
<li><a href="http://github.com">GitHub</a></li>
<li><a href="http://twitter.com">Twitter</a></li>
</ul>
</div>
</nav>
<div>
<h1>Milo's Website</h1>
<img src="./Milo.JPG">
<p>A simple website for Learn To Code - HTML/CSS with NO CSS added</p>
<h3>About Me</h3>
<p>Hello, My name is Milo and I am a 2.5 year old English Bulldog! My hobbies include:</p>
<ul>
<li>Eating</li>
<li>Going For Walks</li>
<li>Playing with other dogs</li>
<li>Going to the <a href="https://www.meetup.com/sfbulldogs/">SF Bulldog Meetup!</a></li>
</ul>
<p> I was born and raised in Atwater, CA before moving to San Francisco, CA at the age of 6 months old to live with my dad (and now my mom too!).</p>
</div>
</body>
</html>