-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (82 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
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- meta for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- meta for first mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="images/favicon.ico">
<title>Home</title>
<link rel="stylesheet" href="css/style.css"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!-- start header -->
<header class="main_header">
<div class="logo_img">
<img src="images/mylogom.png" alt="udacity logo">
</div>
<div class="developer_name">
<h1>Sarah Hassan</h1>
<p>front-end developer</p>
</div>
</header><!-- end header -->
<hr class="horizontal_line">
<!-- start main section -->
<div class="main section_padding">
<!-- <a href="http://www.freepik.com">Designed by Newelement / Freepik</a> -->
<img src="images/banner_small.png" alt="web develpment banner"
srcset="images/banner_small.png 649w,
images/banner_medium.png 1298w,
images/banner_large.png 2596w"
sizes="100vw">
</div><!-- end main section -->
<!-- start my works section -->
<section class="my_works section_padding">
<header class="section_header">
<h2>My Works</h2>
</header>
<!--<a href="http://www.freepik.com">Designed by Freepik</a>-->
<!--<a href="https://www.flaticon.com/">Designed by FlatIcon</a>-->
</section><!-- end my works section -->
</div>
<!-- modal -->
<section id="conModal" class="modal">
<!-- modal content -->
<div class="modal_content">
<i class="fas fa-times-circle modal_close_btn"></i>
<div class="img_wrapper">
<img src="" id="modal_img" />
</div>
<div class="text_wrapper">
<p id="modal_text"></p>
<p id="modal_tech"></p>
</div>
</div><!-- end modal content -->
</section><!-- end modal -->
<!-- start footer-->
<footer class="footer text_center">
<p>Copyright © Sarah Hassan</p>
<div class="social_icons">
<a href="https://github.com/sarah27h">
<i class="fab fa-github-square"></i>
</a>
<a href="https://www.linkedin.com/in/sarah-hassan-s27">
<i class="fab fa-linkedin"></i>
</a>
<!-- <a href="https://www.behance.net/">
<i class="fab fa-behance-square"></i>
</a> -->
</div>
</footer><!-- end footer-->
<!-- start scripts -->
<script src="data/projectData.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>