-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
77 lines (59 loc) · 2.37 KB
/
links.html
File metadata and controls
77 lines (59 loc) · 2.37 KB
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
<!DOCTYPE html>
<head>
<title>links</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<img id = 'banner' src ='img/banner.png'>
</header>
<aside>
<img id = "asidemain" src ="img/mii/sidemii.png">
<ul id = 'nav'>
<li> <a href = "index.html"> Home </a> </li>
<li> <a href = "portfolio.html"> Portfolio </a> </li>
<li> <a href = "links.html"> Links </a> </li>
</ul>
<p>Welcome to the <b>website</b> of <b>Will Wright</b>!</p>
<p>This page is currently under construction, so for the time being, here are some of my past projects, WIPs, and things I'm involved in!</p>
<img id = "chart" src = "https://ghchart.rshah.org/treeinsect" alt = "A GitHub chart showing my recent commits">
</aside>
<section>
<h3>Links!</h3>
<div id = "links">
<div class = "link">
<a href = "https://github.com/treeinsect">
<i class="fa fa-github" style="font-size:50px"></i>
<br>
Github
</a>
</div>
<div class = "link">
<a href = "Will Wright CV.pdf" >
<i class="fa fa-file-text" style="font-size:50px"></i>
<br>
CV
</a>
</div>
<div class = "link">
<a href = "https://treeinsect.github.io">
<i class="fa fa-globe" style="font-size:50px"></i>
<br>
Website
</a>
</div>
<div class = "link">
<a href = "mailto:swright9332@gmail.com">
<i class="fa fa-envelope" style="font-size:50px"></i>
<br>
Email
</a>
</div>
</div>
</section>
<footer>
<p>Hosted on GitHub Pages ^_^</p>
</footer>
</body>
</html>