-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (58 loc) · 2.25 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Aliénor Golvet is a French PhD student at Ircam and experimental music composer.">
<title>aliénor golvet</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="./style.css" rel="stylesheet" type="text/css" media="all">
<link rel='stylesheet' href='https://www.cnap.fr/sites/faune/styles/faune-fontes.css'>
<link rel="icon" href="./img/favicon-full.png">
<!-- <script>
const musicImg = ["./img/home_img_music-1.jpg",
"./img/home_img_music-2.jpg",
"./img/home_img_music-3.jpg",
"./img/home_img_music-4.jpg",
"./img/home_img_music-5.jpg"
];
document.addEventListener('DOMContentLoaded', _ => {
const randImageIndex = ~~(Math.random() * musicImg.length);
document.getElementById('home-img-music').src = musicImg[randImageIndex];
});
</script> -->
</head>
<body>
<p id="name-home">aliénor golvet</p>
<div class="home-section-left">
<a href="research.html">
<div class="home-img-link">
<img class="home-img" src="./img/photo-espro-2.JPG">
</div>
<span class="home-section-text">research</span>
</a>
</div>
<div class="home-section-right">
<a href="music.html">
<span class="home-section-text">music</span>
<div class="home-img-link">
<img class="home-img" id="home-img-music" src="./img/home_img_music-4.jpg">
</div>
</a>
</div>
<!-- <div class="home-section-right">
<a href="music.html" class="home-section-text">music</a>
<div class="home-img-link">
<a href="music.html"><img class="home-img" src="./img/home_img_music.jpg"></a>
</div> -->
</div>
<!--
<div class="home-section-left">
<img class="home-img" src="./home_img_simone.png">
<p class="home-section-text">simone</p>
</div>
-->
</body>
</html>