-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
96 lines (74 loc) · 3.39 KB
/
news.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
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
<!DOCTYPE html>
<html>
<head>
<script src = "main.js"></script>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
</head>
<body>
<span id="circle" class="circle"></span>
<div class = "nav-bar">
<div class = "nav-1-container"><a href = "index.html" class = "navigate link-one">Zhou Lab
<!--<div style = "display: inline-block; font-size: 10px;">The University of Texas at Arlington</div>-->
</a></div><!--
--><div class = "menu-container"><div class = "menu" onmouseover = "cursorCircle()" onmouseout = "cursorCircle()" onclick = "menuDown()">
<div class = "line1"></div>
<div class = "line2"></div>
<div class = "line3"></div>
</div></div>
</div>
<div class = "navigation-content">
<div class = "nav-con-container">
<a href = "research.html" class = "one">research</a><!--
--><a href = "news.html" class = "two">news</a><br><!--
--><a href = "publications.html" class = "three">publications</a><!--
--><a href = "members.html" class = "four">members</a><br><!--
--><a href = "facilities.html" class = "five">facilities</a><!--
--><a href = "classes.html" class = "six">classes</a><br><!--
--><a href = "positions.html" class = "seven">positions</a><!--
--><a href = "#0" class = "eight" onclick="smoothScroll(document.getElementById('scroll-target2'))">contact</a>
</div>
</div>
<div class = "news">
<div class = "news-left">
<h2 class="news-heading">News</h2>
</div>
<div class = "news-right">
<ul class = "news-list">
<li onmouseover = "document.querySelector('.news-right').style.backgroundImage = 'url(\'news-a.jpg\')';">
<a href = "https://qz.com" target = "none">Discovery in the field of developmental psychology</a>
</li>
<li onmouseover = "document.querySelector('.news-right').style.backgroundImage = 'url(\'news-b.jpg\')';">
<a href = "https://qz.com" target = "none">Acetyl CoA in Citric Acid Cycle Osmoregulation</a>
</li>
<li onmouseover = "document.querySelector('.news-right').style.backgroundImage = 'url(\'news-c.jpg\')';">
<a href = "https://qz.com" target = "none">On-chip optical printing technique</a>
</li>
<li onmouseover = "document.querySelector('.news-right').style.backgroundImage = 'url(\'news-d.jpg\')';">
<a href = "https://qz.com" target = "none">Arboreal gene regulation in prehensile simian populations</a>
</li>
</ul>
</div>
</div>
<div class = "open-positions-container">
<div class="circle-positions">
</div>
<img src = "circle-text.png" class = "circle-text">
</div>
<div class = "bottom-nav" id = "scroll-target2">
<div class = "group-1">
<div>Say Hello</div>
<div style = "color: gray;">[email protected]<br>817-123-4567</div>
</div>
<div class = "group-2">
<div>UTA, Department of Electrical Engineering</div>
<div style = "color: gray;"> 202A NanoFAB Center
500 South Cooper Street,<br> Arlington, Texas 76019-0072
</div>
</div>
<div class = "group-3">
© Zhou Lab 2019
</div>
</div>
</body>
</html>