-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (60 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PetJournal - Organização</title>
<style>
/* Your styles here */
</style>
</head>
<body>
<header>
<h1>PetJournal</h1>
</header>
<div class="container">
<section class="intro">
<img src="logo.png" alt="PetJournal Logo" class="logo">
<h2>Apresentação do Projeto</h2>
<p>Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun</p>
</section>
<section class="soujunior">
<h2>Projeto SouJunior</h2>
<p>Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun Loraepsun</p>
</section>
<section class="projects">
<h2>Branches do Projeto PetJournal</h2>
<div class="card">
<h3>API</h3>
<p>Tecnologias: Node.js, Express</p>
</div>
<div class="card">
<h3>Android</h3>
<p>Tecnologias: Kotlin, Retrofit</p>
</div>
<div class="card">
<h3>iOS</h3>
<p>Tecnologias: Swift, Alamofire</p>
</div>
<div class="card">
<h3>Front End</h3>
<p>Tecnologias: React, Redux</p>
</div>
</section>
</div>
<script>
// Get the current date and format the time
const date = new Date();
const hours = date.getHours();
const minutes = date.getMinutes();
const seconds = date.getSeconds();
const milliseconds = date.getMilliseconds();
// Format the time string
const formattedTime = `${hours}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}.${milliseconds.toString().padStart(3, '0')}`;
// Display the formatted time in a paragraph element
const paragraph = document.createElement('p');
paragraph.textContent = `Current time: ${formattedTime}`;
document.body.appendChild(paragraph);
</script>
</body>
</html>