Skip to content

Commit

Permalink
Added Presenters
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian committed Mar 9, 2013
1 parent 5179ecf commit aab08eb
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 2 deletions.
Binary file added Images/Hansen.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/Vera.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Images/poplavsky.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions MasterPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<header id="masterHeader">
<nav id="navigation">
<ul>
<li class="selected"><a id="Summit" href="#">Summit 2013</a></li>
<li class="selected"><a id="Presenters" href="#">Summit 2013</a></li>
<li ><a id="Summit" href="#">Agenda</a></li>
<li><a id="WhatIsNew" href="#">What's new in HTML 5</a></li>
<li><a id="LiveDemo" href="#">Live Demo!!!</a></li>
<li><a id="References" href="#">References</a></li>
Expand All @@ -26,6 +27,9 @@

switch (anchorId)
{
case "Presenters":
source = "Views/Presenters.html";
break;
case "Summit":
source = "Views/Summit.html";
break;
Expand Down Expand Up @@ -65,7 +69,7 @@

});
</script>
<iframe id="ifr" style="overflow:hidden;" src="Views/Summit.html"></iframe>
<iframe id="ifr" style="overflow:hidden;" src="Views/Presenters.html"></iframe>

<footer><span>>>>We love nice solutions!!!<<<</span></footer>
</body>
Expand Down
32 changes: 32 additions & 0 deletions Views/Presenters.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>Agenda</title>
<style>
html { font-family: Segoe UI; background-color: #FAE1EB; }
h1 {color: red; font-size: 37px;}
ul {color: red; font-size: 25px;}
li {color: red; font-size: 25px;}
table td {color: red; font-size: 10x;}
</style>
</head>
<body>
<div style="top: 25%; width: 50%; margin: 0px auto">
<center>
<h1>Presenters</h1>
<table>
<tr>
<td><center><img src="../images/hansen.jpg" /></center></td>
<td><center><img src="../images/poplavsky.jpg" /></center></td>
<td><center><img src="../images/vera.jpg" /></center></td>
</tr>
<tr>
<td><center>Hansen, Gustavo (MyT&E)</center></td>
<td><center>Poplavsky, Adrián (MyT&E)</center></td>
<td><center>Vera, Camilo (Portal)</center></td>
</tr>
</table>
</center>
</div>
</body>
</html>

0 comments on commit aab08eb

Please sign in to comment.