-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (111 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v6.1.1/css/all.css"
/>
<title>Práctica Keepcoding</title>
</head>
<body>
<header>
<img src="images/rowlet-i.jpg" alt="rowlet logo" />
<button><i class="fa-solid fa-bars"></i></button>
<nav>
<ul>
<li><a href="#intro">About me</a></li>
<li><a href="#languages">Languages</a></li>
<li><a href="#contact">Contact me</a></li>
</ul>
</nav>
</header>
<div class="container">
<section class="intro" id="intro">
<img src="images/rowlet.png" alt="rowlet" />
<div class="main-text">
<h1>Hi! I'm <span>Rowlet</span></h1>
<p>
I'm a pokemon that learned how to code and wants to be a web
developer.
</p>
</div>
</section>
<section class="skills" id="languages">
<h2>Languages</h2>
<div class="languages">
<p>HTML</p>
<div class="language" id="html">90%</div>
<p>CSS</p>
<div class="language" id="css">70%</div>
<p>Javascript</p>
<div class="language" id="js">60%</div>
<p>Python</p>
<div class="language" id="python">60%</div>
</div>
</section>
<section class="contact" id="contact">
<h2>Contact me!</h2>
<form action="#" method="post">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" required />
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" required />
<label for="phone">Phone number:</label>
<input type="tel" id="phone" name="phone" required />
<label for="find-me">How did you find me?</label>
<div class="find-me">
<input
type="radio"
id="university"
name="find-me"
value="University"
/>
<label for="university">University</label>
</div>
<div class="find-me">
<input
type="radio"
id="keepcoding"
name="find-me"
value="Keepcoding kick-off"
/>
<label for="keepcoding">Keepcoding kick-off</label>
</div>
<div class="find-me">
<input type="radio" id="school" name="find-me" value="School" />
<label for="school">School</label>
</div>
<label for="github">Github</label>
<input type="text" id="github" name="github" />
<label for="comments">Description</label>
<textarea id="comments" name="comments">
Enter your comments...</textarea
>
<button type="submit">Submit</button>
</form>
</section>
<footer>
<ul>
<li>
<a href="https://github.com"><i class="fa-brands fa-github"></i></a>
</li>
<li>
<a href="https://twitter.com"
><i class="fa-brands fa-twitter"></i
></a>
</li>
<li>
<a href="https://www.instagram.com/"
><i class="fa-brands fa-instagram"></i
></a>
</li>
</ul>
</footer>
</div>
</body>
</html>