forked from Laboratoria-learning/freelancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (111 loc) · 5.49 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
<!DOCTYPE html>
<html lang="pt_br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,900|Montserrat:400,700,800,900" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous" />
<title>Freelancer - Start Bootstrap Theme</title>
</head>
<body>
<header class="header-config bg-primary text-set1">
<div class="header-container">
<a href="#" class="logo">Start Bootstrap</a>
<nav class="menu">
<a href="#" class="item-menu">Portfolio</a>
<a href="#" class="item-menu">About</a>
<a href="#" class="item-menu mr-0">Contact</a>
</nav>
</div>
</header>
<section class="start-config bg-secondary">
<div class="start-container">
<img src="assets/images/profile.png" alt="profile image" width="230px" class="profile">
<h1 class="start-title text-set1">Start Bootstrap</h1>
<div class="divider-white">
<i class="fas fa-star"></i>
</div>
<h3 class="start-subtitle text-set3">Web Developer - Graphic Artist - User Experience Designer</h3>
</div>
</section>
<section class="portfolio-config">
<div class="portfolio-container">
<h3 class="text-set2">Portfolio</h3>
<div class="divider-blue mt-1">
<i class="fas fa-star"></i>
</div>
<div class="portfolio-images">
<img src="assets/images/portfolio/cabin.png" alt="cabin image" width="315px"/>
<img src="assets/images/portfolio/cake.png" alt="cake image" width="315px"/>
<img src="assets/images/portfolio/circus.png" alt="circus image" width="315px"/>
<img src="assets/images/portfolio/game.png" alt="game image" width="315px"/>
<img src="assets/images/portfolio/safe.png" alt="safe image" width="315px"/>
<img src="assets/images/portfolio/submarine.png" alt="submarine image" width="315px"/>
</div>
</div>
</section>
<section class="about-config bg-secondary">
<div class="about-container">
<h3 class="text-set2 text-set2-white">About</h3>
<div class="divider-white mt-1">
<i class="fas fa-star"></i>
</div>
<article class="article text-set3">
<p class="about-article">
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="about-article ml-10">
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>
</article>
<a class="download-btn text-set3"><i class="fas fa-download"></i> Download Theme</a>
</div>
</section>
<section class="contact-config text-set3">
<div class="contact-container">
<h3 class="text-set2">Contact Me</h3>
<div class="divider-blue mt-1">
<i class="fas fa-star"></i>
</div>
<form class="contact-form" action="#" method="#">
<label for="Name" class="form-config">Name</label>
<input type="text" id="name" placeholder="Name" class="form-config"/>
<label for="Email" class="form-config">Email Address</label>
<input type="email" id="email" placeholder="Email Address" class="form-config mt-13"/>
<label for="Phone" class="form-config">Phone Number</label>
<input type="tel" id="phone" placeholder="Phone Number" class="form-config mt-13"/>
<label for="Message" class="form-config">Message</label>
<textarea name="message" id="message" placeholder="Message" class="form-config"></textarea>
<button type="submit" name="send-btn" class="send-btn text-set3">Send</button>
</form>
</div>
</section>
<footer class="footer-config bg-primary">
<div class="footer-container">
<div class="footer-info">
<h4 class="text-set1 footer-subtitle">Location</h4>
<p class="text-set3 footer-text">3481 Melrose Place</p>
<p class="text-set3 footer-text mt-0">Beverly Hills, CA 90210</p>
</div>
<div class="footer-info">
<h4 class="text-set1 footer-subtitle">Around The Web</h4>
<ul class="media-icons">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
</ul>
</div>
<div class="footer-info">
<h4 class="text-set1 footer-subtitle">About Freelancer</h4>
<p class="text-set3 footer-text">Freelance is a free to use, open source Bootstrap theme created by <a href="#" class="link-footer">Start Bootstrap</a>.</p>
</div>
</div>
<div class="copyright-container bg-primary">
<small class="copyright text-set3">Copyright © Your Website 2017</small>
</div>
</footer>
</body>
</html>