forked from thessaly/draftweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.html
More file actions
96 lines (74 loc) · 3.62 KB
/
Copy pathdata.html
File metadata and controls
96 lines (74 loc) · 3.62 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Arimo|Bitter|Exo|Handlee|Source+Sans+Pro:600|Sunflower:700|Ubuntu:700" rel="stylesheet">
<title>ETER Datar</title>
<style type="text/css">
.jumbotron {
background-image: url('background.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
min-height: 100vh;
}
section {
padding-top: 4rem;
}
#section-contact {
padding-bottom: 50px;
}
body {
font-family: 'Exo', sans-serif;
}
h1 {
font-weight:bold;
}
</style>
</head>
<body data-spy="scroll" data-target="#navScrollspy">
<!-- NavBar -->
<nav class="navbar bg-info navbar-dark navbar-expand-md fixed-top">
<!-- Selector de idioma -->
<div class="topnav-right dropdown dropup">
<button type="button" class="btn btn-secondary btn-sm dropdown-toggle bg-danger" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" align="right">ETER</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a href="en.html" class="dropdown-item small px-1">English</a>
<a href="index.html" class="dropdown-item small px-1">Spanish</a>
</div>
</ul>
</div>
</nav>
<!-- Encabezado -->
<!-- Descripción del project -->
<div class="container text-center py-5">
<section id="section-project">
<h2 class="display-4">Próximamente / Coming soon!</h2>
</section>
</div>
<!-- Contact -->
<div class="text-center">
<section id="section-contact">
<a href="https://facebook.com/etermonitor" target="_blank"><i class="fab fa-facebook-square h2 text-info ml-2"></i></a> /etermonitor
<a href="https://twitter.com/etermonitor" target="_blank"><i class="fab fa-twitter-square h2 text-info ml-5"></i></a> @etermonitor
</section>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/smooth-scroll/14.2.0/smooth-scroll.min.js" integrity="sha256-/k5n1rmutzb2PSqvtV77T+xHa9plhfEjb/mpn1RpMzA=" crossorigin="anonymous"></script>
<!-- Smooth Scroll -->
<script type="text/javascript">
$(function (){
var scroll = new SmoothScroll('a[href*="#section-"]');
});
</script>
</body>
</html>