-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raven's portfolio</title>
<link rel="stylesheet" href="./src/style/index.css">
</head>
<script src="./src/app/language.js"></script>
<body>
<header id="headLinkList">
<ul>
<li id="liHome">Home</li>
<li><a id="liLinks" href="./links.html">Links</a></li>
<li><a id="liGal" href="https://t.me/Raven_photos">Gallery</a></li>
<li><select name="" id="langSelect">
<option value="en">English</option>
<option value="fr">Français</option>
<option value="no">Norsk</option>
</select></li>
</ul>
</header>
<button id="menuToggle"><img src="./src/img/menuIcon.png" alt=""></button>
<section class="content">
<img src="./src/img/robin888b-10.JPG" alt="" class="mainmg">
<div class="contentText">
<h1>Raven Spart</h1>
<p>Hello 👋 <br>
My name is Raven; I'm a <span id="age">20</span>yo french student in informatic license; <br><br>
for my, programing is often like a game, <span class="spoiler" id="sp1">when you don't ask me to use Ocaml or assembly 👀</span> <br><br>
I like to do photography on my free-time and sometimes I draw furries things <br><br>
i'm also a gay furry who like to play justDance and spend all of his time listening to musics
</p>
</div>
</section>
</body>
<script src="./src/app/app.js"></script>
</html>