muzaf commited on
Commit
2321077
·
verified ·
1 Parent(s): 6d226a4

hadi refi verdim örnek

Browse files
Files changed (3) hide show
  1. contact.html +32 -0
  2. index.html +33 -8
  3. projects.html +31 -0
contact.html ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>Contact Me</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ <style>
9
+ form {
10
+ margin-top: 20px;
11
+ }
12
+ input, textarea {
13
+ display: block;
14
+ margin: 10px 0;
15
+ padding: 8px;
16
+ width: 100%;
17
+ }
18
+ </style>
19
+ </head>
20
+ <body>
21
+ <div class="card">
22
+ <h1>Contact Me</h1>
23
+ <form>
24
+ <input type="text" placeholder="Your Name">
25
+ <input type="email" placeholder="Your Email">
26
+ <textarea placeholder="Your Message"></textarea>
27
+ <button type="submit">Send Message</button>
28
+ </form>
29
+ <a href="index.html">Back to Home</a>
30
+ </div>
31
+ </body>
32
+ </html>
index.html CHANGED
@@ -5,15 +5,40 @@
5
  <meta name="viewport" content="width=device-width" />
6
  <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
- </head>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  <body>
10
  <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
 
 
 
17
  </div>
18
- </body>
19
  </html>
 
5
  <meta name="viewport" content="width=device-width" />
6
  <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
+ <style>
9
+ .image-container {
10
+ margin: 20px 0;
11
+ text-align: center;
12
+ }
13
+ .image-container img {
14
+ border-radius: 8px;
15
+ max-width: 100%;
16
+ }
17
+ nav {
18
+ margin-top: 20px;
19
+ text-align: center;
20
+ }
21
+ nav a {
22
+ margin: 0 10px;
23
+ padding: 8px 16px;
24
+ background: #f0f0f0;
25
+ border-radius: 4px;
26
+ text-decoration: none;
27
+ color: #333;
28
+ }
29
+ </style>
30
+ </head>
31
  <body>
32
  <div class="card">
33
+ <h1>Welcome to Hadi's Space!</h1>
34
+ <p>This is a customized static website created by Hadi.</p>
35
+ <div class="image-container">
36
+ <img src="http://static.photos/technology/640x360/42" alt="Technology Image">
37
+ </div>
38
+ <nav>
39
+ <a href="projects.html">My Projects</a>
40
+ <a href="contact.html">Contact Me</a>
41
+ </nav>
42
  </div>
43
+ </body>
44
  </html>
projects.html ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>My Projects</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ <style>
9
+ .project {
10
+ margin: 20px 0;
11
+ padding: 20px;
12
+ border: 1px solid #ddd;
13
+ border-radius: 8px;
14
+ }
15
+ </style>
16
+ </head>
17
+ <body>
18
+ <div class="card">
19
+ <h1>My Projects</h1>
20
+ <div class="project">
21
+ <h2>Project 1</h2>
22
+ <p>Description of my first project.</p>
23
+ </div>
24
+ <div class="project">
25
+ <h2>Project 2</h2>
26
+ <p>Description of my second project.</p>
27
+ </div>
28
+ <a href="index.html">Back to Home</a>
29
+ </div>
30
+ </body>
31
+ </html>