-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
114 lines (91 loc) · 2.88 KB
/
index2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/main.css">
<title>Your Blockchain Smart Contract Builder</title>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="logo">
<img src="icons/logo.svg" alt="Logo">
</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
</ul>
</nav>
<!-- Home Section -->
<section class="home">
<div class="text-container">
<h1>Your Blockchain Smart Contract Builder</h1>
<p>Create smart contracts effortlessly with our intuitive visual interface.</p>
</div>
<div class="carousel">
<!-- Carousel content goes here -->
</div>
</section>
<!-- Split Screen Section -->
<section class="split-screen">
<div class="left">
<!-- Left side content goes here -->
</div>
<div class="right">
<!-- Right side content goes here -->
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2023 Your Company Name. All rights reserved.</p>
</footer>
<script src="javascript/main.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="Icons/smart_contract_icon.svg" type="image/svg+xml">
<title>Smart Contract Editor</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="container">
<h1>Smart Contract Editor</h1>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h2>Create and Visualize Smart Contracts</h2>
<p>Build complex smart contracts with an intuitive drag-and-drop interface.</p>
<a href="dashboard.html" class="btn">Get Started</a>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<h2>Key Features</h2>
<ul>
<li>Drag-and-drop interface for building smart contracts</li>
<li>Customize block appearance and connections</li>
<li>Export and import projects as JSON files</li>
<li>Save projects locally in the browser</li>
<li>Visualize data flow between blocks</li>
</ul>
</div>
</section>
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<p>© 2023 Smart Contract Editor. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>