This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (51 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-152880745-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-152880745-1');
</script>
<title>Weichen Qiu</title>
<link href="main.css" rel="stylesheet" type="text/css" />
<script src="main.js" type="text/javascript"></script>
<script src="pagesearch.js" type="text/javascript"></script>
<!-- thumbnail -->
<meta property="og:site_name" content="Weichen Qiu"/>
<meta property="og:image" content="//w3ichen.github.io/thumbnail.jpg"/>
<meta property="og:type" content="Personal Website"/>
<meta property="og:url" content="w3ichen.github.io"/>
<meta property="og:title" content="Weichen Qiu"/>
<meta property="og:description" content="Computer Engineering"/>
<!-- favicon -->
<link rel="shortcut icon" type="image/png" href="/favicon.png">
<link rel="apple-touch-icon" sizes="32×32" href="/favicon.png"/>
<link rel="apple-touch-icon" href="/favicon.png"/>
<link rel="apple-touch-icon-precomposed" sizes="32×32" href="/favicon.png">
<link rel="apple-touch-icon-precomposed" href="/favicon.png">
<link rel="mask-icon" href="/favicon.png" color="#008080">
<meta name="msapplication-TileColor" content="#008080">
<meta name="msapplication-TileImage" content="/favicon.png">
</head>
<!-- WEICHEN -->
<header>Weichen</header><br>
<body>
<!-- SEARCHBAR -->
<div class="searchbar">
<input type="text" name="in" id="in" class="searchtxt" placeholder="Ask Me A Question" onkeydown="if (event.keyCode==13)document.getElementById('searchbtn').click()"/>
<button id="searchbtn" class="searchbutton" onclick="search(document.getElementById('in').value, 'main' )"></button>
</div>
<!-- BUTTONS -->
<div class="buttonRow">
<button class="buttons" onclick="window.location.href='https://www.linkedin.com/in/weichen-q'" style="background-color: #156;">LinkedIn</button>
<button class="buttons" onclick="window.location.href='pages/searchall.html'" style="background-color: red;">Search All</button>
</div>
<script src="main.js" type="text/javascript"></script>
<!-- QUOTE -->
<div id="quote"></div>
</div>
</body>
</html>