forked from Laboratoria-learning/freelancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (113 loc) · 5.08 KB
/
index.html
File metadata and controls
113 lines (113 loc) · 5.08 KB
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
<!-- Agrega aquí la estructura HTML de tu sitio web -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Freelancer</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,900|Montserrat:400,700,800" rel="stylesheet">
<script src="https://use.fontawesome.com/e2d6054dae.js"></script>
</head>
<body>
<nav class="montserrat text-uppercase"><!-- segmento para la barra de navegación -->
<div>
<h1>start bootstrap</h1>
</div>
<div class="menu-bar">
<a class="menu" href="#contact" style='text-decoration:none'>contact</a>
<a class="menu" href="#about" style='text-decoration:none'>about</a>
<a class="menu" href="#portfolio" style='text-decoration:none'>portfolio</a>
</div>
</nav>
<main id="screen-1" class="clear"><!-- segmento para la pantalla de perfil -->
<section class="profile-pic">
<img src="assets/images/profile.png" alt="coder">
</section>
<h1 class="title montserrat text-uppercase">start bootstrap</h1>
<span></span>
<span class="fa fa-star fa-2x" aria-hidden="true" color=white></span><!--adaptación del código de Jacqueline Baez-->
<p class="skills lato">Web Developer - Graphic Artist - User Experience Designer</p>
</main>
<section id="portfolio"><!-- segmento para la vista de portfolio -->
<h2 class="montserrat text-uppercase">portfolio</h2>
<span></span>
<span class="fa fa-star fa-2x" aria-hidden="true"></span>
<section id="projects">
<div>
<img src="assets/images/portfolio/cabin.png" alt="cabin">
</div>
<div>
<img src="assets/images/portfolio/cake.png" alt="cake">
</div>
<div>
<img src="assets/images/portfolio/circus.png" alt="circus">
</div>
<div>
<img src="assets/images/portfolio/game.png" alt="game">
</div>
<div>
<img src="assets/images/portfolio/safe.png" alt="safe">
</div>
<div>
<img src="assets/images/portfolio/submarine.png" alt="submarine">
</div>
</section>
</section>
<section id="about"><!-- segmento para la vista de about -->
<h2 class="montserrat text-uppercase">about</h2>
<span></span>
<span class="fa fa-star fa-2x" aria-hidden="true"></span>
<div class="lato">
<p class="paragraph">Freelancer is a free bootstrap theme created by Start Bootstrap. The download includes the complete source files including HTML, CSS, and Javascript as well as optional LESS stylesheets for easy customization.</p>
<p class="paragraph">Whether you're a student looking to showcase your work, a professional looking to attract clients, or a graphic artist looking to share your projects, this template is the perfect starting point!</p>
</div>
<div class="lato button">
<i class="fa fa-download fa-1x" aria-hidden="true"></i>
<a>Download Now!</a>
</div>
</section>
<section id="contact">
<h2 class="montserrat text-uppercase">contact me</h2><!-- segmento para la vista de contact me -->
<span></span>
<span class="fa fa-star fa-2x" aria-hidden="true"></span>
<div>
<form class="lato"><!-- extracto del código de Dení -->
<input type="text" placeholder="Name" title="name"><br>
<input type="email" placeholder="Email Address" title="email address"><br>
<input type="phone" name="phone" placeholder="Phone Number" title="Phone number"><br>
<textarea rows="5" cols="" placeholder="Message"></textarea>
<div>
<button class="lato button-contact">Send</button>
</div>
</form>
</div>
</section>
<footer id="footer">
<section id="address-socialmedia-about">
<div class="location">
<h2 class="montserrat text-uppercase">location</h2>
<p class="lato">3481 Melrose Place Beverly Hills, CA 90210</p>
</div>
<div class="social">
<h2 class="montserrat text-uppercase">around the web</h2>
<p class="lato">
<i class="fa fa-facebook icon" aria-hidden="true"></i>
<i class="fa fa-google-plus icon" aria-hidden="true"></i>
<i class="fa fa-twitter icon" aria-hidden="true"></i>
<i class="fa fa-linkedin icon" aria-hidden="true"></i>
<i class="fa fa-fw fa-dribbble icon"></i>
</p>
</div>
<div class="about">
<h2 class="montserrat text-uppercase">about freelancer</h2>
<p class="lato">Freelance is a free to use, open source Bootstrap theme created by <strong>Start Bootstrap</strong>.</p>
</div>
</section>
<section class="copy">
<p class="lato">Copyright © Your Website 2017</p>
</section>
</footer>
</body>
</html>