-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 2.87 KB
/
index.html
File metadata and controls
67 lines (64 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My Portfolio</h1>
<button id="add-block">Sample Button</button>
</header>
<main id="portfolio-container">
<div class="column">
<!-- Column 1 Content -->
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<code><!-- Example of embedded code block --></code>
</div>
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allowfullscreen></iframe>
</div>
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<iframe width="100%" height="500px" src=" https://play.unity.com/en/games/" frameborder="0" allowfullscreen></iframe>
</div>
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://embed.figma.com/" allowfullscreen></iframe>
</div>
</div>
<div class="column">
<!-- Column 2 Content -->
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<img src="assets/color.jpeg" alt="Colors">
</div>
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<iframe src="https://docs.google.com/presentation/" frameborder="0" width="480" height="299" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<iframe height="300" style="width: 100%;" scrolling="no" title="Simplest inner glow card animation" src="https://codepen.io/thebabydino/embed/" frameborder="no" loading="lazy" allowtransparency="true" allowfullscreen="true"></iframe>
</div>
<div class="content-block">
<h2>Project Title</h2>
<p>Write a brief description of your project here.</p>
<iframe src="https://circuitverse.org/simulator/embed/sample" style="border-width:; border-style: solid; border-color:#b83d3d;" name="myiframe" id="projectPreview" scrolling="no" frameborder="1" marginheight="0px" marginwidth="0px" height="500" width="500" allowFullScreen></iframe>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>