-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="images/r_project_logo_icon_169810.png" class="navbar-projectsIcon">
<nav>
<ul id="menuList">
<li><a href="">Overview</a></li>
<li><a href="">Project 1</a></li>
<li><a href="">Project 2</a></li>
<li><a href="">Archive</a></li>
</ul>
</nav>
<img src="images/menu-icon.png" class="navbar-menuIcon" onclick="togglemenu()">
</div>
<div class="row">
<div class="col-1">
<h2>Example<br>Title</h2>
<h3>Example Subtitle</h3>
<p>Example Text</p>
<h4>Example Sub-subtitle</h4>
<button type="button">Go To<img src="images/pngfind.com-arrow-png-transparent-161790.png">
</button>
</div>
<div class="col-2">
<img src="images/brand_r_project_icon_158745.png" class="Rlogo">
<div class="color-box"></div>
<div class="button2">
<img src="images/pngfind.com-arrow-png-transparent-161790.png">
<p><small>Click</small></p>
</div>
</div>
</div>
<div class="social-links">
<img src="images/kisspng-scalable-vector-graphics-github-computer-icons-log-github-brand-octacat-social-svg-png-icon-free-down-5ba35d7e0d5bb4.0780233915374329580547(1).png">
<img src="images/linkedin_clipart3041379.png">
</div>
</div>
<script>
var menuList = document.getElementById("menuList");
menuList.style.maxHeight = "0px";
function togglemenu(){
if(menuList.style.maxHeight == "0px")
{
menuList.style.maxHeight = "130px";
}
else
{
menuList.style.maxHeight = "0px";
}
}
</script>
</body>
</html>