-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (131 loc) · 6.26 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css\style.css">
</head>
<body>
<!--Logo & Navigation-->
<header class="main-header">
<!-- Logo -->
<div class="logo-icon">
</div>
<!-- Navigation -->
<nav>
<a href="#home-page" class="left-rounded">Home</a>
<a href="#our-profile">Our Profile</a>
<a href="#message-us" class="right-rounded">Message Us</a>
</nav>
</header>
<!--Main Content-->
<main>
<!-- Home Page -->
<section class="home">
<header id="home-page">
<h1>HI <span id="user-greeting">...</span>, WELCOME!</h1>
</header>
<div class="banner">
<img class="banner-image" src="https://picsum.photos/200"/>
<img class="banner-image" src="https://picsum.photos/300"/>
<img class="banner-image" src="https://picsum.photos/100"/>
<button onclick="plusDivs(-1)"> Previous </button>
<button onclick="plusDivs(1)"> Next </button>
</div>
</section>
<hr class="body-line"/>
<!-- Our Profile -->
<section class="profile">
<!-- Title -->
<header id="our-profile">
<h1>Our Profile</h1>
</header>
<!-- Content -->
<div class="content">
<h3>About The Company</h3>
<p>TechNova Solutions is a dynamic technology company committed to revolutionizing how businesses integrate digital solutions. Founded in 2015, we specialize in custom software development, cloud services, and AI-driven analytics designed to streamline operations and enhance decision-making. Our mission is to empower businesses of all sizes by providing scalable and innovative solutions that drive growth and efficiency. With a team of passionate experts and a client-first approach, TechNova Solutions prides itself on delivering cutting-edge technology that adapts to the ever-changing demands of the digital age.</p>
<h3>Vision & Mission</h3>
<p>To be a global leader in delivering innovative and sustainable technology solutions that empower businesses and transform industries.</p>
</div>
</section>
<hr class="body-line"/>
<!-- Message Us -->
<section class="message">
<!-- Title -->
<header id="message-us">
<h1>Message Us</h1>
</header>
<!-- Content -->
<main class="contentmessage">
<div class="kiri-form">
<!-- Form -->
<form name="message-form" onsubmit="return validateForm()">
<div class="row">
<div class="col-left">
<label for="full-name">Full Name :</label>
</div>
<div class="col-right">
<input type="text" name="full-name" placeholder="Enter Your Name" required>
</div>
</div>
<div class="row">
<div class="col-left">
<label for="birth-date">Date of Birth :</label>
</div>
<div class="col-right">
<input type="date" name="birth-date" required>
</div>
</div>
<div class="row">
<div class="col-left">
<label for="gender">Gender :</label>
</div>
<div class="col-right">
<input type="radio" id="male" name="gender" value="male" required>
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" required>
<label for="female">Female</label>
</div>
</div>
<div class="row">
<div class="col-left">
<label for="messages">Message :</label>
</div>
<div class="col-right">
<textarea placeholder="Write Your Message..." name="messages" required></textarea>
</div>
</div>
<div class="row">
<input class="submit" type="submit" value="Submit">
</div>
<!-- <input placeholder="Enter Your Name" type="text" name="full-name" required>
<br/>
<input type="date" name="birth-date" required>
<br/>
<input type="radio" id="male" name="gender" value="male" required>
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" required>
<label for="female">Female</label>
<br/>
<textarea placeholder="Write Your Message..." name="messages" required></textarea>
<br/>
<input class="submit" type="submit" value="Submit"/> -->
</form>
</div>
<div class="kanan-form">
<p>Name :<span id="sender-full-name"></span></p>
<p>Date of Birth :<span id="sender-birth-date"></span></p>
<p>Gender :<span id="sender-gender"></span></p>
<p>Message :<span id="sender-messages"></span></p>
</div>
</main>
</section>
</main>
<!--Footer-->
<footer>
<p>© 2025 - All rights reserved</p>
</footer>
<script src="js\script.js"></script>
</body>
</html>