-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (81 loc) · 4.53 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
<!DOCTYPE html>
<!--
Name: Chuong Vu
Email: [email protected]
Major: Computer Science
School: University of Massachusetts Lowell
Course: 91.61 GUI Programming I
Date created: 9/8/2016
Update Date: 10/4/2016
Link: http://weblab.cs.uml.edu/~cvu/index.html
css: http://weblab.cs.uml.edu/~cvu/css/style.css
Description: Assignment 4: Styling Your First Web Page With CSS
This is about page, this descript about myself and my study plan in the future
Resouces: http://www.w3schools.com/html/default.asp
-->
<html lang="en-US">
<head>
<title>UML - Chuong Vu</title>
<meta charset="UTF-8">
<!-- stylesheets -->
<link type="text/css" rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<!-- Body tag -->
<body>
<!-- Main Div -->
<div id='header' class="container-fluid">
<!-- header container -->
<div class='text-header'>
<div class="name-tag pad-top-50">
<!-- this is first name -->
<p class="fname">CHUONG</p>
<!-- this is last name -->
<p class="lname">VU</p>
</div>
<!-- links of social media -->
<a href="https://www.linkedin.com/in/chuongdvu" class="social-link social-link-alt" target="_blank"><img class="img-social" src="img/linkedin.png" onmouseover="this.src='img/linkedin-hover.png'" onmouseout="this.src='img/linkedin.png'" alt="Linkedin"></a>
<a href="https://github.com/vdc1703" class="social-link social-link-alt" target="_blank"><img class="img-social" src="img/github.png" onmouseover="this.src='img/github-hover.png'" onmouseout="this.src='img/github.png'" alt="Github"></a>
<a href="https://www.facebook.com/vdc1712" class="social-link social-link-alt" target="_blank"><img class="img-social" src="img/facebook.png" onmouseover="this.src='img/facebook-hover.png'" onmouseout="this.src='img/facebook.png'" alt="Facebook"></a>
<a href="mailto:[email protected]" class="social-link social-link-alt" target="_blank"><img class="img-social" src="img/email.png" onmouseover="this.src='img/email-hover.png'" onmouseout="this.src='img/email.png'" alt="Email"></a>
<!-- not in use now at this time since I dont have a good profile picture -->
<!-- <div class=''> -->
<!-- <img class="img-profile" src ="img/profile.png" alt="Profile Picture"> -->
<!-- </div> -->
</div>
</div>
<!-- About Me -->
<div class="container-fluid pad-top-50 about">
<div class="text-center">
<h1>About Me</h1>
</div>
<div class="space">
<div class="fname">Hi,</div>
<p>My name is Chuong Vu, I am currently a junior at UMass Lowell but a sophomore in Computer Science. I came to the United States in 2006, went to Middlesex Community College and transferred to UMass Lowell in fall 2014. </p>
<p>I plan to double major in Computer Science and Information Technology since I’m interested in both fields of study.</p>
</div>
</div>
<!-- Skills -->
<div class="container-fluid pad-top-10 bg-project">
<div class="text-center">
<h2>GUI Assignments</h2>
<a href="https://vdc1703.github.io/GUI/GUI-I/index.html">GUI I</a>
<br>
<a href="https://vdc1703.github.io/GUI-II/index.html">GUI II</a>
</div>
</div>
<!--Display footer-->
<div id="footer">
<p>Under Development © 2016 Chuong Vu - 91.61 GUI Programming I</p>
<p>This page is valid
<a href="http://jigsaw.w3.org/css-validator/validator?uri=https%3A%2F%2Fvdc1703.github.io%2FGUI-1%2Findex.html+&profile=css3&usermedium=all&warning=1&vextwarning=&lang=en"><img style="border:0;width:4%" src="img/valid-css.png" alt="Valid CSS!"></a>
and
<a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fvdc1703.github.io%2FGUI-1%2Findex.html"><img style="border:0;width:4%" src="img/html5-courses.png" alt="Valid HTML5"></a>
per W3C
</p>
<br>
<br>
</div>
<!-- <div class="clear"></div> -->
</body>
</html>