forked from Montana-Code-School/Simple-HTML-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 863 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 863 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Brigitta's Site</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Fascinate+Inline|Roboto" rel="stylesheet">
</head>
<body>
<main>
<!-- This is the heading -->
<div class="topnav" id="myTopnav">
<a href="#home">Home</a>
<a href="#timeline">Timeline</a>
<a href="About.html">About</a>
</div>
<div id="header">
<div class="boxStyle">
<h1>Welcome to Brigitta's Page</h1>
<p class="center">I'm new to coding and this is my first website.</br></br>
<img class="imgStyle" src="img/IMG_0299_copy.jpg" alt="Image of my cat Nimr"/><figcaption class="captionStyle">My Cat Nimr</figcaption></p>
</div>
</div>
</main>
</body>
</html>