-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (61 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>About Madeline</title>
<!-- Mobile view -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Link to CSS -->
<link rel="stylesheet" type="text/css" href="./css/index.css">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=PT+Serif:400,700|Poiret+One" rel="stylesheet">
<!-- Icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navigation bar -->
<nav>
<div class="row black">
<div class="col">
<a href="#" class="button block black">HOME</a>
</div>
<div class="col">
<a href="pages/aboutme.html" class="button block black">ABOUT</a>
</div>
<div class="col">
<a href="pages/photography.html" class="button block black">ART</a>
</div>
<div class="col">
<a href="pages/contact.html" class="button block black">CONTACT</a>
</div>
</div>
</nav>
<!-- Image -->
<div class="bgimg">
<div class="display-middle">
</div>
</div>
<main>
<div class="content">
<p id="hello">Hello, World! </p>
<p id="text">
My name is Madeline. <br>
I'm an aspiring software developer from Seattle, Washington.
</p>
</div>
</main>
<br><br>
<!-- Footer -->
<footer id="footer">
<div id="social">
<a href="https://github.com/made-line" title="Github">
<i class="fa fa-github fa-2x" alt="Github" style="color:#df9fbf;"></i>
</a>
<a href="https://twitter.com/madeline_codes" title="Twitter">
<i class="fa fa-twitter fa-2x" alt="Twitter" style="color:#df9fbf;"></i>
</a>
</div>
<div class="name">2020 MN</div>
</footer>
</body>
</html>