-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-page.html
More file actions
40 lines (35 loc) · 1.44 KB
/
project-page.html
File metadata and controls
40 lines (35 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/css/style-project.css">
<link rel="stylesheet" href="./src/css/responsive-projects.css">
<script src="./src/js/script.js" defer></script>
<title>Projeto</title>
</head>
<body>
<header class="header">
<button onclick="goToSection('home')" class="home">Home</button>
<button onclick="goToSection('about')" class="about">About</button>
<button onclick="goToSection('projects')" class="projects">Projects</button>
<button onclick="goToSection('contact')" class="contact">Contact</button>
</header>
<div class="card">
<div class="content">
<h1>Nome Projeto</h1>
<h2>o que foi usado</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat...
</p>
<div class="actions">
<a href="https://github.com/git_projeto" target="_blank">GitHub</a>
</div>
</div>
<div class="image">
<img src="https://dummyimage.com/260x260/9ead90/000000&text=about.img.placeholder" alt="Project Photo" />
</div>
</div>
<script src="./src/js/project-data.js" defer></script>
</body>
</html>