-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfigmaapp.html
More file actions
75 lines (58 loc) · 3.21 KB
/
figmaapp.html
File metadata and controls
75 lines (58 loc) · 3.21 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
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META TAGS-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Figma Prototype for a hackathon ~ Tanmay's Portfolio</title>
<meta name="description" content="Tanmay's Career Portfolio・タンマイのキャリアポートフォリオ">
<meta name="twitter:image" content="photos/Helloname.jpeg">
<meta property="og:image" content="photos/Helloname.jpeg">
<!-- All the important imports-->
<link rel="icon" type="image/x-icon" href="photos/Favicon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abel">
<link href='https://fonts.googleapis.com/css?family=Rubik' rel='stylesheet'>
<link rel="stylesheet" href="https://fonts.googleapis.com/earlyaccess/kokoro.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+JP" rel="stylesheet">
<link rel="stylesheet" href="css_folder/styles.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="css_folder/sea_internet.css"> <!-- Add The style sheet here-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/atom-one-dark.min.css">
<script defer src="app.js"></script>
<title>Figma App</title>
</head>
<body>
<!-- NAV BAR-->
<header class="nav-bar">
<div id="navitem"><h3><a href="index.html">Home</a></h3></div>
<div id="navitem"><h3><a href="#top">Top of Page</a></h3></div>
</header>
<!--Title of the Page-->
<h1 class="sea_body term_paper_title" style="text-align: center !important; padding-bottom: 35px; padding-top: 35px; font-family: 'Rubik', 'Abel', sans-serif;">Welcome to my Figma App!</h1>
<!--The figma app comes here-->
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 20px;" width="800" height="600" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Fproto%2FIPIi4kFbS8sbB2hRgmXngp%2FHackathon-Prototype%3Ftype%3Ddesign%26node-id%3D12-648%26scaling%3Dscale-down%26page-id%3D0%253A1%26starting-point-node-id%3D12%253A648" allowfullscreen></iframe>
<!--Commments for the page-->
<h2 style="font-family: 'Rubik', sans-serif; font-weight: normal;">Do you have any feedback? <a href="mailto:tanmay.bagwe.tb@gmail.com?subject=Regarding%20the%20Figma%20App%20on%20the%20Portfolio%20Website">Contact me</a></h2>
<!-- Footer of the page-->
<footer class="foot">
<img src="photos/logo2.png" class="logo2">
<p>©Tanmay Bagwe</p>
<p>Thank you for visiting</p>
<p>Any Questions? Contact me <a href="mailto:tanmay.bagwe.tb@gmail.com">here!</a></p>
</footer>
<!-- Adding AOS Script (Global settings)-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
});
</script>
<!-- Adding Highlight.js Script-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<!--Adding Chart.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js">
</script>
</body>
</html>