forked from Laboratoria/SAP001-freelancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (103 loc) · 3.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Freelancer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700|Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body>
<header>
<nav class="navbar">
<h1> START BOOTSTRAP </h1>
<ul>
<li>PORTFOLIO</li>
<li>ABOUT</li>
<li>CONTACT</li>
</ul>
</nav>
</header>
<main>
<section class="sectionstart">
<img src="assets/images/profile.png" alt="profile">
<h3>START BOOTSTRAP </h3>
<hr>
<i class="fas fa-star"></i>
<p> Web Developer - Graphic Artist - User Experience Designer</p>
</section>
<section class="sectionport">
<h3> PORTFOLIO </h3>
<hr>
<i class="fas fa-star"></i>
<div class='imag1'>
<img src="assets/images/portfolio/cabin.png" alt="cabin" class="imag">
<img src="assets/images/portfolio/cake.png" alt="cake" class="imag">
<img src="assets/images/portfolio/circus.png" alt="circus" class="imag">
</div>
<div class='imag2'>
<img src="assets/images/portfolio/game.png" alt="game" class="imag">
<img src="assets/images/portfolio/safe.png" alt="safe" class="imag">
<img src="assets/images/portfolio/submarine.png" alt="submarine" class="imag">
</div>
</section>
<section class="sectionabout">
<h3>ABOUT</h3>
<div class='star'>
<i class="fas fa-star"></i>
<hr>
</div>
<div class='divabout1'>
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.
</div>
<div class='divabout2'>
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!
</div>
<button type="button" class="button1"> <i class="fas fa-download"> </i> Download Now!</button>
</section>
<section class='sectioncontact'>
<h3>CONTACT ME</h3>
<hr>
<i class="fas fa-star"></i>
<form>
<input type="text" name="name" placeholder="Name">
<input type="text" name="emailadress" placeholder="Email Adress">
<input type="text" name="phonenumher" placeholder="Phone Numher">
<input type="text" name="message" placeholder="Message" class='message'>
</form>
<button type="submit" class='button2'> Send </button>
</section>
</main>
<footer class='footer1'>
<div class='footertitle'>
</div>
<div class='flocation'>
<p>LOCATION</p>
2215 John Daniel Drive
Clark, MO 65243
</div>
<div class='fsocial'>
<p>AROUND THE WEB</p>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-google-plus-g"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-fw fa-dribbble"></i>
</div>
<div class='fabout'>
<p>ABOUT FREELANCER</p>
Freelance is a free to use, open source Bootstrap theme created by <span>Start Bootstrap</span>.
</div>
</footer>
<div class='footer2'>
<p>Copyright © Your Website 2019</p>
</div>
</body>
</html>