-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
30 lines (26 loc) · 857 Bytes
/
Copy pathabout.html
File metadata and controls
30 lines (26 loc) · 857 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
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
</head>
<body>
<nav>
<ul id="topnav">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a class="active" href="about.html">About</a></li>
</ul>
</nav>
<div id="header1">
<h1>Hi this is me :)</h1>
</div>
<p id="paragraph2">discord@ pixie#1984</p>
<div id="btncenter">
<button id="copybutton" onclick="copyFunction()">copy to clip</button>
</div>
<script src="scripts/default.js" type="text/javascript"></script>
</body>
<link href="styles/nav.css" rel="stylesheet">
</html>