-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·120 lines (102 loc) · 3.23 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Employee of the Month</title>
<link rel="stylesheet" type="text/css" href="public/css/style.css">
</head>
<body>
<div class="frame_top"></div>
<div class="frame_right"></div>
<div class="frame_bottom"></div>
<div class="frame_left"></div>
<div class="frame_corner1"></div>
<div class="frame_corner2"></div>
<div class="frame_corner3"></div>
<div class="frame_corner4"></div>
<div class="glass"></div>
<div class="logo">
<img src="public/img/logo.svg">
</div>
<div class="sponsor">
</div>
<div class="steph">
<div class="portrait">
<img src="public/img/paul.jpg">
</div>
<div class="name">
Paul Murray
</div>
<div class="coolFacts">
<div class="skills">
<h1>Cool Skills</h2>
<ul>
<li>vim</li>
<li>xhtml</li>
<li>PHP</li>
<li>jquery</li>
<li>"phablet first" css approach</li>
<li>has a last-name-could-be-first-name type name</li>
<li>loves Digg Inn</li>
<li>same shoes as Kill Bill</li>
</ul>
</div><div class="employee">
<h1>About</h2>
Paul Murray is an award winning seasoned coder and valued team member. His unbridled enthusiasm radiates across the office floor and his positive attitude is cherished by all.
</div>
<div class="runner-up">
<h2>Runner Up</h2>
Thomas Houston
</div>
</div>
</div>
<div id="ratingwrapper">
<form action="" method="post">
How would you rate this page?
<p class="clasificacion">
<input id="radio1" type="radio" name="estrellas" value="5"><!--
--><label for="radio1">★</label><!--
--><input id="radio2" type="radio" name="estrellas" value="4"><!--
--><label for="radio2">★</label><!--
--><input id="radio3" type="radio" name="estrellas" value="3"><!--
--><label for="radio3">★</label><!--
--><input id="radio4" type="radio" name="estrellas" value="2"><!--
--><label for="radio4">★</label><!--
--><input id="radio5" type="radio" name="estrellas" value="1"><!--
--><label for="radio5">★</label>
</p>
<p>
<input type="submit" value="submit" name="submit" />
</p>
</form>
</div>
<div>
</div>
<div class="ads">
<div class="blah">
ADVERTISEMENT<br>
<img src="public/img/gothscene.gif">
</div>
<div class="blah">
ADVERTISEMENT<br>
<img src="public/img/advertisement2.jpg">
</div>
<div class="blah">
ADVERTISEMENT<br>
<img src="public/img/advertisement3.jpg">
</div>
</div>
<div class="counter">
<a href="http://www.hitwebcounter.com" target="_blank">
<img src="http://hitwebcounter.com/counter/counter.php?page=6501978&style=0019&nbdigits=5&type=page&initCount=0" title="http://www.hitwebcounter.com/htmltutorial.php" Alt="http://www.hitwebcounter.com/htmltutorial.php" border="0" >
</a> <br/>
<!-- hitwebcounter.com -->
<a href="http://www.hitwebcounter.com" title="WebPage Visits" target="_blank" style="font-family: Arial, Helvetica, sans-serif; font-size: 9px; color: #6A7175; text-decoration: underline ;"><strong>WebPage Visits</strong>
</a>
</div>
<script src="public/js/main.pkgd.js"></script>
<script>
alert('Please disable your adblocker')
</script>
</body>
</html>