forked from PaulaCanals/webteca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.21 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
<!--Webteca-->
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/webteca.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap/bootstrap.min.css">
<title>El nostre equip</title>
</head>
<body>
<div class="row">
<div class="title">El nostre equip</div>
<hr>
<div class="text_primary">Tria un dels nostres desenvolupadors</div>
<div class="container">
<div class = "col-md-6 col-md-offset-3">
<div class="row row-centered">
<div class="form-group">
<select class="form-control" id="sel_dev" onchange="document.getElementById('content').src = this.options[this.selectedIndex].value">
<option value="#">---</option>
<option value="content/rt.html">Roger Torrell</option>
<option value="content/rh.html">Ruben Heras</option>
<option value="content/oa.html">Oriol Andres</option>
<option value="content/agb.html">Albert Gines</option>
<option value="content/ag.html">Alex Garcia</option>
<option value="content/sme.html">Sergi Moreno</option>
<option value="content/pgt.html">Paul Guillamon</option>
<option value="content/kba.html">Kevin Bustillos Acurio</option>
<option value="content/gmj.html">Guillem Martinez Jimenez</option>
</select>
</div>
</div>
</div>
</div>
<div class="title">En què treballem</div>
<hr>
<div class="text_primary">Tria una de les nostres UF</div>
<div class="container">
<div class = "col-md-6 col-md-offset-3">
<div class="row row-centered">
<div class="form-group">
<select class="form-control" id="sel_uf" onchange="document.getElementById('content').src = this.options[this.selectedIndex].value">
<option value="#">---</option>
<option value="content/m5uf2.html">M5. Optimització de programari</option>
</select>
</div>
</div>
</div>
</div>
</div>
<hr>
<iframe class="embed_object" id="content" src="" sandbox="allow-same-origin allow-scripts"></iframe>
</body>
</html>