-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (67 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Portfolio</title>
</head>
<body>
<header class="header">
<a href="#" class="logo"> You <span>Sra</span></a>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#projects">My Projects</a>
<!-- <a href="#contact">Contact</a> -->
</nav>
</header>
<section class="home" id="home">
<div class="content">
<h3>Hello,I am</h3>
<h1>yousra latreche</h1>
<h3>And i'm <span>a data scientist </span></h3>
<p>and information & image engineer ^^</p>
<a href="./docs/YousraLatrecheResume.pdf" class="btn">Download Resume</a>
</div>
<div class="home-img">
<img src="images/home2.png" alt="my pic" >
</div>
</section>
<section class="about" id="about">
<div class="about-img">
<img src="images/home2.png" alt="about me">
</div>
<div class="about-content">
<h2 class="heading">About <span>Me</span></h2>
<!-- <h3>web Developer</h3> -->
<p>Hi, I'm yousra, a data scientist from algeria. I have a medium background
in data analysis and ui/ux design and a strong passion For
learning new technologies. </p>
<a href="#" class="btn">Read more</a>
</section>
<section class="Services" id="services">
<h2 class="heading">My <span>Services</span></h2>
<div class="box-container">
<div class="services-box">
<!-- <i class="bx bx-code-alt"></i> -->
<h3>data analysis</h3>
<p>Make a full functioning codes in deep and machine learning , using python libraries along side functioning GUIS. </p>
<!-- <a href="#" class="btn">Read more</a> -->
</div>
</div>
</section>
<section class="projects" id="projects">
<h2 class="heading">My <span>Projects</span></h2>
<div class="box-container">
<div class="services-box">
<!-- <i class="bx bx-code-alt"></i> -->
<h3>data analysis</h3>
<p>I made this portfolio website using HTML, CSS a simple website that you can use to see my projects and contact me. </p>
<a href="#" class="btn">more information</a>
</div>
</section>
</body>
</html>