Design principle and design pattern are not the same in software engineering.
Design Pattern provides a solutions related to implementation, of commonly occurring object oriented problems. That is to say, design pattern offers a specific implementation for the specific object oriented programming problem. For example, if you want to create a class that can only have one object at a time, then you can use the Singleton design pattern which suggests the best way to create a class that can only have one object.
Example : MVC,MVVM,MVP,Abstract Factory, Factory, Singleton, Command, etc.
Design principles provide a guidelines to design better software applications. They do not provide implementation guidelines and are not bound to any programming language. The SOLID (SRP, OCP, LSP, ISP, DIP) principles are one of the most popular sets of design principles.
For example, the Single Responsibility Principle (SRP) suggests that a class should have only one reason to change. This is a high-level statement which we can keep in mind while designing or creating classes for our application. SRP does not provide specific implementation steps but it's up to you how you implement SRP in your application.