-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (106 loc) · 5.04 KB
/
index.html
File metadata and controls
116 lines (106 loc) · 5.04 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Modelo de Processo de Software baseado em Design Thinking e Scrum">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Modelo DT e Scrum</title>
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="images/android-desktop.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Material Design Lite">
<link rel="apple-touch-icon-precomposed" href="images/ios-desktop.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#3372DF">
<link rel="shortcut icon" href="images/favicon.png">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.deep_purple-pink.min.css">
<link rel="stylesheet" href="styles.css">
<style>
#view-source {
position: fixed;
display: block;
right: 0;
bottom: 0;
margin-right: 40px;
margin-bottom: 40px;
z-index: 900;
}
#bottom_page {
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body class="mdl-demo mdl-color--grey-100 mdl-color-text--grey-700 mdl-base">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header mdl-layout__header--scroll mdl-color--primary">
<div class="mdl-layout--large-screen-only mdl-layout__header-row">
</div>
<div class="mdl-layout--large-screen-only mdl-layout__header-row">
<h3> Processo de Sofware com Design Thinking e Scrum</h3>
</div>
<div class="mdl-layout--large-screen-only mdl-layout__header-row">
</div>
<div class="mdl-layout__tab-bar mdl-js-ripple-effect mdl-color--primary-dark">
<a href="#" class="mdl-layout__tab is-active">Início</a>
<a href="https://rafaelsantosbraz.github.io/ModeloDT.github.io/model_pt/index.html" target="_blank"
class="mdl-layout__tab">Modelo</a>
<a href="https://drive.google.com/file/d/1C4T49hqRz_cZS73kazfMePQSU5kh_Ik4/view" target="_blank"
class="mdl-layout__tab">Documentação</a>
</div>
</header>
<main class="demo-main mdl-layout__content">
<div class="demo-container mdl-grid">
<div class="mdl-cell mdl-cell--2-col mdl-cell--hide-tablet mdl-cell--hide-phone"></div>
<div
class="demo-content mdl-color--white mdl-shadow--4dp content mdl-color-text--grey-800 mdl-cell mdl-cell--8-col">
<div class="demo-crumbs mdl-color-text--grey-500">
Modelo DT > Início > Descrição
</div>
<h3>Processo de Sofware com Design Thinking e Scrum</h3>
<p>
Uma representação visual e interativa completa de um modelo de processo de software que visa contemplar
todos os principais estágios de um Projeto de Sotfware, desde o contato inicial da equipe com o cliente até
a fase de disponoibilização e manutenção do software. Para isso, utiliza-se uma combinação da metodologia
Design Thinking e do framework Scrum, visando centrar o processo nas pessoas envolvidas e manter a
eficiência e eficácia.
</p>
</div>
</div>
<br><br>
<div id="bottom_page">
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<div class="mdl-logo">DT e Scrum</div>
<ul class="mdl-mini-footer__link-list">
<li><a href="https://github.com/RafaelSantosBraz/ModeloDT.github.io">Github</a></li>
<li><a href="LICENSE.md" target="_blank">Termos & Privacidade</a></li>
</ul>
</div>
</footer>
</div>
</main>
</div>
<a id="view-source" class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect mdl-button--colored">
<i class="material-icons">language</i>
</a>
<ul class="mdl-menu mdl-menu--top-right mdl-js-menu mdl-js-ripple-effect" for="view-source">
<li class="mdl-menu__item">Português</li>
<li disabled class="mdl-menu__item">English</li>
</ul>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</body>
</html>