forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (81 loc) · 3.93 KB
/
index.html
File metadata and controls
84 lines (81 loc) · 3.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>My Blog</title>
<link href="//fonts.googleapis.com/css?family=Roboto:400,500,300" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-------------------------------Header Section ------------------------------>
<header>
<nav>
<ul class="navigation__list">
<li class="navigation__item">
<a class="navigation__link" href="#">Home</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">About me</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Projects</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Contact </a>
</li>
</ul>
</nav>
</header>
<!-- ----------------------------Main Section------------------------------ -->
<main class="main">
<section>
<h1>Hi, I am Delnia</h1>
<h2 class="text">Web Developer</h2>
<img class="img1"
src="https://images.unsplash.com/photo-1484417894907-623942c8ee29?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1332&q=80"
alt="">
</section>
<!--------------------Three Articles ------------------------->
<section class="articles">
<article>
<img class="imgarticle"
src="https://images.unsplash.com/photo-1453928582365-b6ad33cbcf64?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1173&q=80">
<h2>Projects</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin
literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney
College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage.
<a href="">Learn more...</a>
</p>
</article>
<article>
<img class="imgarticle"
src="https://media.istockphoto.com/id/1444030067/photo/business-people-shaking-hands-success-business-of-logistics-industrial-container-cargo.jpg?s=612x612&w=0&k=20&c=iaB8oTP5zdiOhZIhN0xwoHzF7uqv8QPirpHqvP0J4Qk=">
<h2>Services</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin
literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney
College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage.
<a href="">Learn more...</a>
</p>
</article>
<article>
<img class="imgarticle"
src="https://images.unsplash.com/photo-1577563908411-5077b6dc7624?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80">
<h2>About me</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin
literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney
College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage.
<a href="">Learn more...</a>
</p>
</article>
</section>
</main>
<!-- -------------------Footer Section---------------------------------------->
<footer>
<p class="footer">Created for Code Your Future's HTML/CSS_Coursework_Week_1, Delnia Alipour</p>
</footer>
</body>
</html>