Skip to content

Commit 001946f

Browse files
committed
Jeu javascript
1 parent 0a1a844 commit 001946f

6 files changed

Lines changed: 537 additions & 1 deletion

File tree

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="/assets/style.css">
7+
<title>Jeu javascript</title>
8+
</head>
9+
<body>
10+
11+
<div class="block"></div>
12+
13+
14+
<script src="/assets/script.js"></script>
15+
</body>
16+
</html>

assets/script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(console.log("Test");)

assets/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.block{
2+
padding: 2rem;
3+
background-color: red;
4+
}

gitignore.txt

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
### macOS ###
20+
# General
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
### macOS Patch ###
49+
# iCloud generated files
50+
*.icloud
51+
52+
### Windows ###
53+
# Windows thumbnail cache files
54+
Thumbs.db
55+
Thumbs.db:encryptable
56+
ehthumbs.db
57+
ehthumbs_vista.db
58+
59+
# Dump file
60+
*.stackdump
61+
62+
# Folder config file
63+
[Dd]esktop.ini
64+
65+
# Recycle Bin used on file shares
66+
$RECYCLE.BIN/
67+
68+
# Windows Installer files
69+
*.cab
70+
*.msi
71+
*.msix
72+
*.msm
73+
*.msp
74+
75+
# Windows shortcuts
76+
*.lnk
77+
78+
# End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux

0 commit comments

Comments
 (0)