-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtmlPage.html
110 lines (97 loc) · 2.73 KB
/
HtmlPage.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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Rephael Congmon</title>
<style type="text/css">
a.transition {
color: #2d3141;
text-decoration: none;
-webkit-transition: color .25s ease-in;
font-size: 40px;
font-family: Helvetica Medium;
}
a.transition:hover {
color: #24B2CB;
}
a.transitionNormal {
color: #C6C6C6;
text-decoration: none;
-webkit-transition: color .25s ease-in;
font-weight: normal;
font-size: 24px;
font-family: Franklin Gothic Medium;
}
a.transitionNormal:hover {
color: #F9F9F9;
}
#menuBar {
background-color: #313131;
text-align: center;
}
.button {
background-color: #313131;
}
body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px
}
#normal {
font-family: Open Sans;
font-weight: 300;
font-size: 20px;
text-align: center;
color: #474747;
}
#bottom {
background-color: #ECECEC;
text-align: center;
color: #ACACAC;
}
</style>
</head>
<body>
<div style="text-align:center; background-image: url(banner.png);">
<br />
<br />
<br />
<a class="transition" href="http://www.wzis.net/rephael.net"><strong>R</strong>EPHAEL <strong>C</strong>ONGMON</a><br />
<br />
<br />
</div>
<div id="menuBar">
<br />
<a class="transitionNormal" href="http://www.wzis.net/rephael.net/videos">VIDEOS</a> <a class="transitionNormal" href="http://www.wzis.net/rephael.net/Images">PICTURES</a><br />
</div>
<div style="text-align:center;">
<br />
<br />
<br />
<!--<img oncontextmenu="return false" ondragstart="return false" src="icon.jpg" /> -->
</div>
<div id="normal">
<h3>Who am I?</h3>
<p>
My name is <strong> Rephael Congmon</strong>.<br />
I am an aspiring Computer Science major.<br />
This page was developed to serve as a portfolio to showcase my other projects.
</p>
</div>
<div id="bottom">
<br />
<br />
<br />
<br />
<span>Website designed by Rephael Congmon.</span><br />
<br />
<br />
<br />
</div>
</body>
</html>