-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.69 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<title>Portfólio Tatiane Hirata</title>
</head>
<body>
<div class="container">
<header class="row">
<div class="col-md-1">
<img class="header-logo icon" src="img/icone.svg" alt="Ícone do site">
</div>
<div class="col-md-11">
<h1 class="titulo-portfolio text-uppercase text-right">Tatiane Hirata</h1>
<p class="subtitulo-portfolio text-uppercase text-right">Meu portfólio web</p>
</div>
<div class="row">
<div class="col-md-12">
<hr>
</div>
</div>
</header>
<main>
<div class="row">
<div class="col-md-12">
<img class="img-responsive center-block" src="img/code_img.jpg" alt="Um gato">
</div>
</div>
</main>
<section>
<div class="row">
<div class="col-md-12">
<h2 class="trabalhos-feitos text-uppercase">Trabalhos Concluídos</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<hr class="works">
</div>
</div>
<div class="row">
<div class="col-md-4">
<img src="img/mockup_article_img.jpg" class="imagem-projeto img-responsive" alt="Tela de código CSS">
<h3 class="titulo-projeto text-uppercase text-center"><a href="">Mockup ao Artigo</a></h3>
<p class="descricao text-center">Meu primeiro projeto no Nanodegree Udacity</p>
</div>
<div class="col-md-4">
<img src="img/rabbit.jpg" class="imagem-projeto img-responsive" alt="Coelho doméstico">
<h3 class="titulo-projeto text-uppercase text-center"><a href="">Cartão Colecionável</a></h3>
<p class="descricao text-center">Estilização com CSS - cartão colecionável </p>
</div>
<div class="col-md-4">
<img src="img/memory_game.jpg" class="imagem-projeto img-responsive" alt="Jogo de cartas">
<h3 class="titulo-projeto text-uppercase text-center"><a href="">Projeto 3</a></h3>
<p class="descricao text-center">Meu terceiro projeto no Nanodegree Udacity</p>
</div>
</div>
</section>
</div>
</body>
</html>