26 lines
923 B
HTML
26 lines
923 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>akira website</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<!-- import the webpage's stylesheet -->
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<!-- import the webpage's javascript file -->
|
|
<script src="/script.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="header">
|
|
<img src="/img/stripes.png" class="header_pfp">
|
|
<img src="/img/avatar.png" class="header_pfp">
|
|
<h1 class="header_text">Akira Olivia Pink</h1>
|
|
<p class="header_text_sub">lazy trans girl</p>
|
|
<div class="header_links">
|
|
<img src="/img/nav_aboutme.png">
|
|
<img src="/img/nav_visual.png">
|
|
<img src="/img/nav_writings.png">
|
|
<img src="/img/nav_contact.png">
|
|
</div>
|
|
</div>
|
|
</body> |