-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesignpatterns.html
65 lines (57 loc) · 2.73 KB
/
designpatterns.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Design Patterns</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anta">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="https://jorgerabello3.github.io/">Início</a></li>
<li><a href="https://jorgerabello3.github.io/docker.html">Docker</a></li>
<li><a href="https://jorgerabello3.github.io/designpatterns.html">Design Patterns</a></li>
<li><a href="https://jorgerabello3.github.io/databases.html">Bancos de Dados</a></li>
<li><a href="https://jorgerabello3.github.io/java8.html">Funcionalidades do Java 8</a></li>
<li><a href="https://jorgerabello3.github.io/modernjava.html">Programação Moderna Com Java</a></li>
<li><a href="https://jorgerabello3.github.io/techinterviews.html">Perguntas em Entrevistas Técnicas</a></li>
<li><a href="https://jorgerabello3.github.io/livros.html">Livros Recomendados</a></li>
<li><a href="https://jorgerabello3.github.io/cursos.html">Cursos Recomendados</a></li>
</ul>
</nav>
</header>
<main>
<h1>Design Patterns</h1>
<section>
<ol>
<li><a href="https://www.tabnews.com.br/seujorge/design-patterns-strategy">Design Patterns: Strategy</a>
</li>
<li><a href="https://www.tabnews.com.br/seujorge/design-patterns-composition">Design Patterns:
Composition</a></li>
<li><a href="https://www.tabnews.com.br/seujorge/design-patterns-singleton">Design Patterns:
Singleton</a></li>
<li><a href="https://www.tabnews.com.br/seujorge/design-patterns-template-pattern">Design Patterns:
Template Pattern</a></li>
<li><a href="https://www.tabnews.com.br/seujorge/design-patterns-factory">Design Patterns: Factory</a>
</li>
</ol>
</section>
</main>
<footer>
<section>
<p><a href="https://www.linkedin.com/in/jorgerabellodev/" target="_blank"><i class="fab fa-linkedin"></i>
LinkedIn</a></p>
<p><a href="https://bitbucket.org/jorge_rabello/workspace/repositories/" target="_blank"><i
class="fab fa-bitbucket"></i> Bitbucket</a></p>
<p><a href="https://sharebook.com.br/search/Jorge%20Rabello" target="_blank"><i class="fab fa-youtube"></i>
Vídeos Técnicos - Sharebook</a></p>
<p><a href="https://www.tabnews.com.br/seujorge/conteudos/1" target="_blank"><i class="fa-solid fa-book"></i>
TabNews</a></p>
</section>
</footer>
</body>
</html>