-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
executable file
·99 lines (93 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Freelancer</title>
<link href="https://fonts.googleapis.com/css?family=Lato|Montserrat:600" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<nav>
<div class="container">
<h1 class="text-uppercase text-white">start bootstrap</h1>
<ul>
<li>
<a href="#">PORTFOLIO</a>
</li>
<li>
<a href="#">ABOUT</a>
</li>
<li>
<a href="#">CONTACT</a>
</li>
</ul>
</div>
</nav>
<!-- second section -->
<section id="second">
<div>
<img src="assets/images/profile.png" alt="profile">
</div>
<h1 class="text-uppercase text-white">start bootstrap</h1>
<div>
<hr class="star">
</div>
<h2 class="text-white subtitle">Web Developer - Graphic Artist - User Experience Designer</h2>
</section>
<!-- third section -->
<section id="third">
<div class="container">
<h1 class="text-uppercase title">portfolio</h1>
<div>
<hr class="star backwhite">
</div>
<div class="clean">
<div id="one" class="image"></div>
<div id="two" class="image"></div>
<div id="three" class="image"></div>
</div>
<div>
<div id="four" class="image"></div>
<div id="five" class="image"></div>
<div id="six" class="image"></div>
</div>
</div>
</section>
<!-- fourth section -->
<section id="fourth">
<div class="container">
<h1 class="text-uppercase text-white title">about</h1>
<div>
<hr class="star">
</div>
<p id="first-p">U+002A 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>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>
<button class="btn-about text-white" id="download">
<i class="fa fa-download" aria-hidden="true"></i>
Download Theme
</button>
</div>
</div>
</section>
<!-- fifth section -->
<section id="fifth">
<div class="container">
<h1 class="text-uppercase title">contact me</h1>
<div>
<hr class="star backwhite">
</div>
<form>
<input type="text" id="name" placeholder="Name">
<input type="text" id="email" placeholder="Email Address">
<input type="text" id="phone" placeholder="Phone Number">
<input type="text" id="message" placeholder="Message" >
</form>
<div class="send-div">
<button id="send" type="button" name="send">Send</button>
</div>
</div>
</section>
<script src="https://use.fontawesome.com/7873633050.js"></script>
</body>
</html>