Skip to content

Commit d71ca5b

Browse files
committed
commit hoja de contacto
1 parent e52d29f commit d71ca5b

File tree

3 files changed

+146
-3
lines changed

3 files changed

+146
-3
lines changed

student-cvs/sebmartnz19/contact.html

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,60 @@
11
<!DOCTYPE html>
22
<html lang="en">
3+
34
<head>
45

56
<title>Contact</title>
7+
<link rel="stylesheet" href="./main.css">
68

79
</head>
10+
811
<body>
9-
10-
12+
<main class="page">
13+
14+
<form>
15+
<div class="form-group">
16+
<h1> CONTACTO</h1>
17+
<label for="name">Name</label>
18+
<input id="name" type="text" placeholder="Introduce your name" required>
19+
</div>
20+
<div class="form-group">
21+
<label for="email">Email</label>
22+
<input id="email" type="email" placeholder="introduce your Email" required>
23+
</div>
24+
<div class="form-group">
25+
<fieldset>
26+
<legend>Budget</legend>
27+
<input id="10000" name="budget" type="radio"><label for="10000">$10.000</label>
28+
<input id="5000" name="budget" type="radio"><label for="5000">$5.000</label>
29+
<input id="1000" name="budget" type="radio"><label for="1000">$1.000</label>
30+
</fieldset>
31+
</div>
32+
33+
<div class="form-group">
34+
<label for="type">Project Type</label>
35+
<select id="type" required>
36+
<option disbled selected>Choose one</option>
37+
<option>Website</option>
38+
<option>Webapp</option>
39+
<option>Mobile App</option>
40+
<option>Design</option>
41+
</select>
42+
</div>
43+
<div class="form-group">
44+
<label for="description">Description</label>
45+
<textarea id="description"></textarea>
46+
<div> Write a short description of the project that you need</div>
47+
</div>
48+
<div class="form-group">
49+
<label for="terms" type="checkbox">
50+
<input id="terms" type="checkbox" required>
51+
<span>Accept terms and conditions</span>
52+
</label>
53+
</div>
54+
<button>Send</button>
55+
56+
</form>
57+
</main>
1158
</body>
59+
1260
</html>

student-cvs/sebmartnz19/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title> Sebastian Martinez </title>
8-
<link rel="stylesheet" href="/styles.css">
8+
<link rel="stylesheet" href="./styles.css">
99

1010

1111
</head>

student-cvs/sebmartnz19/main.css

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
html{
2+
box-sizing: border-box;
3+
}
4+
5+
* {
6+
box-sizing: inherit;
7+
}
8+
9+
h1 {
10+
11+
color: #333;
12+
max-width: 800px;
13+
margin-top: 100px;
14+
margin-left: 100px;
15+
padding: 0 40px;
16+
font-family: Arial, Helvetica, sans-serif;
17+
}
18+
19+
body {
20+
21+
color: #333;
22+
background-color: #fefefe
23+
24+
25+
}
26+
27+
28+
.page {
29+
max-width: 800px;
30+
font-family: Arial, Helvetica, sans-serif;
31+
padding: 100px auto;
32+
margin: 0 40px;
33+
34+
35+
}
36+
37+
.form-group {
38+
39+
margin: 20px 0;
40+
41+
}
42+
43+
label, input {
44+
vertical-align: middle;
45+
}
46+
47+
label, input:not([type="radio"], [type="checkbox"]) {
48+
color: #666;
49+
width: 100%;
50+
51+
52+
}
53+
54+
label{
55+
font-weight: bold;
56+
57+
}
58+
59+
60+
61+
62+
legend {
63+
font-weight: bold;
64+
color: #666;
65+
66+
}
67+
68+
input[type="text"], [type="email"], textarea {
69+
70+
background: white;
71+
display: block;
72+
border: 1px solid lightgray;
73+
border-radius: 4px;
74+
padding: 8px 10px;
75+
resize: vertical;
76+
width: 100%;
77+
}
78+
79+
80+
textarea + div {
81+
display: block;
82+
font-size: 12px;
83+
margin-top: 10px 0 0;
84+
display: block;
85+
resize: vertical;
86+
height: 40px;
87+
font-family: Arial, Helvetica, sans-serif;
88+
color: gray;
89+
height: 40px;
90+
}
91+
92+
button {
93+
font-family: Arial, Helvetica, sans-serif;
94+
}
95+

0 commit comments

Comments
 (0)