-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
115 lines (90 loc) · 4.76 KB
/
contact.html
File metadata and controls
115 lines (90 loc) · 4.76 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Contact</title>
</head>
<body>
<nav>
<div class="labt" style="text-transform: uppercase;">
<h1>Gene Regulation of Cell identity</h1>
</div>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fa fa-bars" style="font-size:36px"></i>
</label>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="researchprojects.html">RESEARCH PROJECTS</a></li>
<li><a href="publications.html">PUBLICATIONS</a></li>
<li><a href="members.html">MEMBERS</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<main>
<div class="contact">
<h1>CONTACT</h1>
<h2>Contact</h2>
<div class="contactwrap">
<p>Mireya Plass Pórtulas</p>
<p><a class="mail" href="mailto:mplass@ub.edu" id="contactocon">mplass@ub.edu</a></p>
<div class="social-media">
<div class="icon-media bsky">
<a href="https://bsky.app/profile/mireyaplass.bsky.social">
<svg viewBox="0 0 512 512">
<path d="M111.8 62.2C170.2 105.9
233 194.7 256 242.4c23-47.6 85.8-136.4 144.2-180.2c42.1-31.6
110.3-56 110.3 21.8c0 15.5-8.9 130.5-14.1 149.2C478.2 298 412
314.6 353.1 304.5c102.9 17.5 129.1 75.5
72.5 133.5c-107.4 110.2-154.3-27.6-166.3-62.9l0 0c-1.7-4.9-2.6-7.8-3.3-7.8s-1.6 3-3.3
7.8l0 0c-12 35.3-59 173.1-166.3 62.9c-56.5-58-30.4-116 72.5-133.5C100 314.6 33.8 298 15.7
233.1C10.4 214.4 1.5 99.4 1.5 83.9c0-77.8 68.2-53.4 110.3-21.8z" />
</svg>
</a>
</div> <!----bsky-->
<div class="icon-media x">
<a href="https://x.com/PlassLab">
<svg xmlns="https://x.com/PlassLab" viewBox="0 0 512 512">
<path
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" />
</svg>
</a>
</div><!--x-->
</div> <!--social media-->
</div> <!--contactwrap-->
<h2 style="margin-top:40px">Location</h2>
<div class="locationwrap">
<p><strong>Departament de Ciències Fisiològiques</strong></p>
<p>Universitat de Barcelona/IDIBELL</p>
<p>Feixa Llarga s/n, 08907 </p>
<p>L'Hospitalet de Llobregat - Spain</p>
</div> <!--locationwrap-->
<div class="map">
<div id="map"></div>
</div>
</div> <!--contact-->
<footer>
<span>© 2025 Gene Regulation of Cell identity LAB
Web created by <a href="https://annatv.click/">Anna Taulés</a></span>
</footer>
</main>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script src="script.js"></script>
<script>
//MAP
let mapOptions = {
center: [41.346322, 2.106681],
zoom: 17
}
let map = new L.map('map', mapOptions);
let layer = new L.TileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png');
map.addLayer(layer);
let marker = new L.Marker([41.346322, 2.106681]).addTo(map); </script>
</body>
</html>