-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 2.19 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 2.19 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
<!DOCTYPE html>
<html lang=en>
<head>
<!-- GENERAL INFO -->
<title>Hello World</title>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="css/style.css"/>
</head>
<body>
<!--<header id="nav-wrapper">
<nav id="nav">
<div class="nav left">
<span class="gradient skew"><h1 class="logo un-skew"><a href="#home">Logo Here</a></h1></span>
<button id="menu" class="btn-nav"><span class="fas fa-bars"></span></button>
</div>
<div class="nav right">
<a href="#home" class="nav-link active"><span class="nav-link-span"><span class="u-nav">Home</span></span></a>
<a href="#about" class="nav-link"><span class="nav-link-span"><span class="u-nav">About</span></span></a>
<a href="#work" class="nav-link"><span class="nav-link-span"><span class="u-nav">Work</span></span></a>
<a href="#contact" class="nav-link"><span class="nav-link-span"><span class="u-nav">Contact</span></span></a>
</div>
</nav>
</header>-->
<nav class="topnav">
<!--<img class="logo" src="images/Logo.png" width="100">-->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="miscellaneous.html">Miscellaneous</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<article>
<!--content-->
<h1>Welcome!</h1>
<p>My name is Marine and I'm a doctoral researcher at the University of Edinburgh.</p>
<!--<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>-->
</article>
<!-- <footer>
<h3>Contact</h3>
<p>marine.demarty@ed.ac.uk</p>
</footer> -->
</body>
</html>