-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
78 lines (69 loc) · 2.1 KB
/
Home.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
<!DOCTYPE html>
<html>
<head>
<title> Claude Yan </title>
<link href="homeStyle.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400" rel="stylesheet">
</head>
<body>
<div id="nav-bar">
<div id="logo">
<h1>Claude Yan<h1>
</div>
<div id="links">
<ul>
<li><a href="">Home</a></li>
<li><a href="AboutMe.html" target="_blank">About Me</a></li>
</div>
</div>
<div id="banner">
<p>Motivated. Driven. Passionate.</p>
</div>
<div id="skills">
<h1 id="heading"> Skills & Experience </h1>
<div id="skillblocks">
<div class="skillset" id="java">
<img src="./img/c++.png"/>
<div class="skillHead">
<h2> C++ </h2>
<div id="skillDesc">
<ul>
<li> Knowledge of general concepts of C++ </li>
<li> Always willing to expand knowldedge of the lower level programming language </li>
</ul>
</div>
</div>
</div>
<div class="skillset" id="python">
<img src="./img/python.png"/>
<div class="skillHead">
<h2> Python </h2>
<div class="skillDesc">
<ul>
<li> Proficient in general object oriented programming </li>
<li> Lots of experience with algorithms and applications of data structures </li>
</ul>
</div>
</div>
</div>
<div class="skillset" id="webdev">
<img src="./img/web.png"/>
<div class="skillText">
<h2> Web Development </h2>
<div class="skillDesc">
<ul>
<li> Self-taught HTML/CSS </li>
<li> Programmed multiple webpages and experimented with different user interfaces using CSS </li>
<li> Always looking to improve and expand my web development capabilities </li>
<li> Working on adding Javascript to the repotoire </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer>
<p> Contact me at [email protected] or 858-945-0783 </p>
</footer>
</body>
</html>