-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (87 loc) · 2.84 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
<!doctype html>
<html class="no-js" lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=9;IE=10;IE=Edge,chrome=1"/>
<title>html5 testpage MountCSS </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=""/>
<link rel="stylesheet" href="css/style.css">
<script src="./js/vendors/modernizr.js"></script>
<style>
.wrap {
background: #fff;
box-shadow: 0 1px 5px 0 rgba(17,58,102,.3);
margin: 5% auto;
padding: 5%;
max-width: 1000px;
}
.wrap ul li * {
font-size: 14px;
}
.page_todo {
opacity: 0.2;
}
</style>
</head>
<body>
<div class="wrap" id="top" role="document">
<h1>MountCSS</h1>
<hr>
<p>
Hello and welcome to MountCSS homepage !
</p>
<ul>
<li>
<h6>
Usefull links for your project :
</h6>
<ul>
<li>
<a href="/_html5testpage.html">HTML 5 test page</a>
</li>
<li>
<a href="/_styleguide_base.html">Framework base elements styleguide</a>
</li>
<li>
<a href="/_styleguide_components.html">Framework components styleguide</a>
</li>
<li>
<a href="/_styleguide_javascript.html">Framework javascript items styleguide</a>
</li>
</ul>
</li>
<li>
<hr>
</li>
<li>
<h6>
PAGES
</h6>
<ul>
<li>
<a class="text__dark" href="./views/01-home/01-home.php">Homepage</a>
<strong class="text__info">wip</strong>
</li>
<li class="page_todo">
<a class="text__dark" href="./views/00-blank/00-blank.php">Page name</a>
</li>
<li class="page_todo">
<a class="text__dark" href="./views/00-blank/00-blank.php">Page name</a>
</li>
<li class="page_todo">
<a class="text__dark" href="./views/00-blank/00-blank.php">Page name</a>
</li>
</ul>
</li>
</ul>
<p style="display:block;margin-top:10rem;text-align: center;">
Made with passion by <a href="https://www.philippebarbosa.com/developpeur-front-end/">Philippe Barbosa</a>
</p>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
</body>
</html>