-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (78 loc) · 3.41 KB
/
index.html
File metadata and controls
87 lines (78 loc) · 3.41 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mingyuan Du</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="main.js"></script>
</head>
<body class="bg-dark">
<!-- nav bar -->
<nav class="navbar navbar-expand-lg bg-dark navbar-dark fixed-top">
<div class="navbar-nav container-fluid actual_nav">
<a href="#home" class="nav-link col-7">Mingyuan Du</a>
<a href="#about" class="nav-link col-1">About</a>
<a href="#experience" class="nav-link col-1">Experience</a>
<a href="#projects" class="nav-link col-1">Projects</a>
<a href="./statics/resume.pdf" class="nav-link col-1">Resume</a>
<a href="https://www.linkedin.com/in/mingyuan-du-157219156/" class="nav-link col-1">
<i class="fa fa-linkedin-square" style="font-size:24px"></i>
</a>
</div>
</nav>
<!-- home -->
<div id="home" class="hero-image">
<div class="hero-text">
Mingyuan <b>Du</b>
</div>
<h2 class="sm-heading">Comuputer Engineerign Student</h2>
</div>
<!-- about, experience, projects -->
<div id="about" class="info bg-dark">
<div class="info-text-solid">
<h3>I am...</h3>
<p>
An electrical engineering student at UBC
<br>
A researcher on something about electronics
<br>
An emotionless killer
<br>
And a soy sauce enthusiast
<br><br>
I'm also pretty tall and have plenty of hair.
</p>
</div>
</div>
<div id="experience" class="info experience-image">
<div class="info-text-pic">
<h3>My Experience</h3>
<p>
Skylar is building this and she doesn't know what I did and what I'be been through.
</p>
</div>
</div>
<div id="skylar" class="info bg-dark">
<div class="info-text-solid">
<h3>By the way...</h3>
<p class="text-left">
My awesome friend <a href="https://skylarljy.github.io/">Skylar Liang </a>built me this so you may want to checkout her page
</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>.