-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 819 Bytes
/
Copy pathindex.html
File metadata and controls
43 lines (36 loc) · 819 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> first web design </title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<section class="navsec">
<div class=" logo">
<h2>hot & cold</h2>
</div>
<nav>
<a href="#">home</a>
<a href="#">about</a>
<a href="#">services</a>
<a href="#">gallery</a>
<a href="#">contact</a>
</nav>
</section>
<main>
<div class="leftside">
<h3>welcome</h3>
<h2>to my page</h2>
<h1>hot & cold websites </h1>
<a class="btn1" href="#">hire me</a>
<a class="btn2" href="#">contact me</a>
</div>
<div class="rightside">
<img src="image/student.jpg" alt="student">
</div>
</main>
</header>
</body>
</html>