-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
76 lines (53 loc) · 2.14 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>ZAP|About Me|</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Stylesheets go here. -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
<link href="https://fonts.googleapis.com/css?family=Lalezar" rel="stylesheet">
<script src="https://use.fontawesome.com/f853708f92.js"></script>
</head>
<body>
<!-- Content goes here. -->
<!-- Scripts go here. -->
<div class="content">
<p>
Zachary Allen Pinner
</p>
<p>
Ruby on Rails developer in training!
</p>
<img class="img" src="./img/img1.jpg" alt ="a picture of me">
<a href="./index.html">
<button class="button">Home</button>
</a>
<a href="./about.html">
<button class="button">About Me!</button>
</a>
<a href="./contact.html">
<button class="button">Contact</button>
</a>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<div class="logo">
<a href="https://twitter.com/?lang=en">
<i class="fa fa-twitter fa-3x" aria-hidden="true"></i>
</a>
<a href="https://www.facebook.com/">
<i class="fa fa-facebook-official fa-3x" aria-hidden="true"></i>
</a>
<a href="https://www.instagram.com/?hl=en">
<i class="fa fa-instagram fa-3x" aria-hidden="true"></i>
</a>
<a href="https://github.com/TIYZAP">
<i class="fa fa-github fa-3x" aria-hidden="true"></i>
</a>
</div>
</div>
</body>
</html>