-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfigma.html
More file actions
71 lines (60 loc) · 3.13 KB
/
figma.html
File metadata and controls
71 lines (60 loc) · 3.13 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>carousel</title>
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="CSS/carousel.css">
</head>
<body style=" background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(Assets/Backgrounds/bg6.png)">
<div id="navbar"></div>
<script src="JS/fetch.js"></script>
<div class="container">
<div id="slide">
<div class="item" style="background-image: url(Assets/Photgraphy/P2.jpg);">
<div class="content">
<div class="name">Cubizard</div>
<div class="des">app for </div>
<button type="button" class="nes-btn is-normal pexel-button">See more</button>
</div>
</div>
<div class="item" style="background-image: url(Assets/Photgraphy/P3.jpg);">
<div class="content">
<div class="name">Fallen Crown</div>
<div class="des">depicits fall of facebook and rise of meta</div>
<button type="button" class="nes-btn is-normal pexel-button">See more</button>
</div>
</div>
<div class="item" style="background-image: url(Assets/Photgraphy/P6.jpg);">
<div class="content">
<div class="name">Forgotten Treasure</div>
<div class="des">Relics of the Past: Once-Valuable, Now-Obsolete</div>
<button type="button" class="nes-btn is-normal pexel-button">See more</button>
</div>
</div>
<div class="item" style="background-image: url(Assets/Photgraphy/P4.jpg);">
<div class="content">
<div class="name">Cubes in Check</div>
<div class="des">Pawns and Pattern, A harmonious blend of strategy and complexity</div>
<button type="button" class="nes-btn is-normal pexel-button">See more</button>
</div>
</div>
<div class="item" style="background-image: url(Assets/Photgraphy/P5.jpg);">
<div class="content">
<div class="name">Cave carvings</div>
<div class="des">History etched in the heart of a stone sanctuary, speaking to us from the distant past.</div>
<button type="button" class="nes-btn is-normal pexel-button">See more</button>
</div>
</div>
</div>
<div class="buttons">
<button type="button" id="prev" class="nes-btn is-normal"><</button>
<button type="button" id="next" class="nes-btn is-normal">></button>
</div>
</div>
<button type="button" id="back" class="nes-btn is-primary">back</button>
</body>
<script src="JS/c.js"></script>
</html>