-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresources.html
87 lines (79 loc) · 2.2 KB
/
resources.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>resources</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
width: 80%;
max-width: 1600px;
height: 700px;
background-color: #f0f0f0;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.photo {
flex: 1;
padding: 20px;
text-align: center;
}
.photo img {
max-width: 100%;
height: auto;
}
.form {
flex: 1;
padding: 20px;
}
.form h2 {
text-align: center;
}
.form input[type="text"],
.form input[type="link"],
.form input[type="int"],
.form button {
display: block;
width: 100%;
margin-bottom: 15px;
padding: 10px;
font-size: 16px;
}
.form button {
background-color: #56776C;
color: #fff;
border: none;
cursor: pointer;
}
.form button:hover {
background-color: #464F41;
}
</style>
</head>
<body>
<div class="container">
<div class="photo">
<img src="Agriculture and natural resource career exploration.jpeg" alt="Your Photo">
</div>
<div class="form">
<h2>Resources Sharing Hub</h2>
<form>
<input type="text" placeholder="Name" required>
<input type="text" placeholder="Region" required>
<input type="int" placeholder="Contact Number" required>
<input type="link" placeholder="Upload pdf" required>
<button type="submit">Submit</button>
</form>
</div>
</div>
</body>
</html>