-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
199 lines (191 loc) · 6.05 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Ana, Elias - Experiments</title>
<link rel="alternate" type="application/rss+xml" title="egrappler.com" href="feed/index.html">
<link href="http://fonts.googleapis.com/css?family=Raleway:700,300" rel="stylesheet"type="text/css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/prettify.css">
<style>
.table100
{
background-color: #fff;
}
table
{
width: 100%;
}
th, td
{
font-weight: unset;
padding-right: 10px;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.subsection:hover
{
text-decoration: underline;
text-underline-position: auto;
cursor:pointer;
}
.column1
{
width: 30%;
padding-left: 10px;
font-family: Lato-Bold;
font-size: 18px;
line-height: 1.4;
}
.column2
{
width: 70%;
}
</style>
<script type="text/javascript">
var idList = [];
idList[0] = "compo_display";
idList[1] = "prepa_display";
idList[2] = "PMGI_display";
idList[3] = "PPA_display";
idList[4] = "pattern_display";
idList[5] = "wetEtch_display";
idList[6] = "electrode_display";
var homePageIdNb = [];
homePageIdNb[0] = 0;
function toggleMe(a){
var e=document.getElementById(a);
if(!e)return true;
if(e.style.display=="none"){
e.style.display="block";
}
else{
e.style.display="none";
}
return true;
}
function hideAllSection(){
var e;
for(var i = 0; i < idList.length; i ++) {
e = document.getElementById(idList[i]);
e.style.display="none";
}
}
function homePageInit(){
hideAllSection();
var e;
for(var i = 0; i < homePageIdNb.length; i ++) {
e = document.getElementById(idList[homePageIdNb[i]]);
e.style.display="block";
}
}
function goToPage(pagePath){
window.location= pagePath;
}
var page = "index.html";
function goto(title) {
disp = title + "_display";
var e=document.getElementById(disp);
document.location = page + "#" + title;
e.style.display="block";
}
</script>
</head>
<body onload="homePageInit()">
<header>
<div class="container">
<h2 class="docs-header"> Ana, Elias - Experiments</h2>
</div>
</header>
<section>
<div class="container">
<ul class="docs-nav" id="menu-left">
<li><strong><a href="#box" style="color:#000000">Home page</a></strong></li>
<li class="separator"></li>
<li><a href="bibliography/sensor_tab.html" style="color:#000000"><strong>Bibliography search</strong></a></li>
<li><a href="RIE/training1/doc.html" style="color:#000000"><strong>RIE</strong></a></li>
<li><a href="sample/T1.html" style="color:#000000"><strong>Evaporation + lift-off</strong></a></li>
<li><a href="sample/S1.html" style="color:#000000"><strong>Patterns transfer</strong></a></li>
<li><a href="sample/E1.html" style="color:#000000"><strong>Active regions isolation</strong></a></li>
<li><a href="sample/F1.html" style="color:#000000"><strong>Final gas sensors</strong></a></li>
</ul>
<div class="docs-content">
<h2>Presentation of the sections</h2>
<p>
<table class="styled-table">
<tr>
<td class="column1 subsection" onclick="goToPage('bibliography/sensor_tab.html')">
Bibliography search
</td>
<td class="column2">
State of the art and performances of typical 2D material gas sensors.
</td>
</tr>
<tr>
<td class="column1 subsection" onclick="goToPage('RIE/training1/doc.html')">
RIE
</td>
<td class="column2">
Experiments concerning the reactive ion etching recipes we use for this project.
</td>
</tr>
<tr>
<td class="column1 subsection" onclick="goToPage('sample/T1.html')">
Evaporation + lift-off
</td>
<td class="column2">
Experiments concerning the wet etching in the PMGI and the metal deposition by evaporation + lift-off.
</td>
</tr>
<tr>
<td class="column1 subsection" onclick="goToPage('sample/S1.html')">
Patterns transfer
</td>
<td class="column2">
Experiments for the wavy surfaces patterning onto the PPA and the transfer of these patterns into the SiO<SUB>2</SUB>.
</td>
</tr>
<tr>
<td class="column1 subsection" onclick="goToPage('sample/E1.html')">
Active regions isolation
</td>
<td class="column2">
Experiments for the isolation of interesting regions of MoS<SUB>2</SUB> from the rest of the bulk.
</td>
</tr>
<tr>
<td class="column1 subsection" onclick="goToPage('sample/F1.html')">
Final gas sensors
</td>
<td class="column2">
All the steps concerning the final gas sensors fabrication.
</td>
</tr>
</table
</p>
</div>
</div>
</section>
<footer>
<div class="container">
<img src="image/logo-epfl.png" style="max-width:150px;">
</img>
</div>
</footer>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/prettify/prettify.js"></script>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?lang=css&skin=sunburst"></script>
<script src="js/layout.js"></script>
<script src="js/jquery.localscroll-1.2.7.js" type="text/javascript"></script>
<script src="js/jquery.scrollTo-1.4.3.1.js" type="text/javascript"></script>
<script type="text/javascript" src="../../wp-content/themes/piha/js/top-bar-l1.js" ></script>
<script type="text/javascript" src="../../wp-content/themes/piha/js/bsa-ads-l1.js" ></script>
<!--Dynamically creates analytics markup-->
<?php include("http://www.egrappler.com/analytics.php");?>
</body>
</html>